Public/Create-EdgeDeveloper.ps1

Function Create-EdgeDeveloper {
    <#
    .SYNOPSIS
        Create a developer in Apigee Edge.

    .DESCRIPTION
        Create a developer in Apigee Edge.

    .PARAMETER Name
        The name to give to this new Developer. It must be unique in the organization.

    .PARAMETER Email
        The Email address of the developer to create.

    .PARAMETER First
        The first (given) name of the developer to create.
        
    .PARAMETER Last
        The last (sur-) name of the developer to create.

    .PARAMETER Attributes
        Optional. Hashtable specifying custom attributes for the developer.

    .PARAMETER Org
        The Apigee Edge organization. The default is to use the value from Set-EdgeConnection.

    .EXAMPLE
        Create-EdgeDeveloper -Name Elaine1 -Email Elaine@example.org -First Elaine -Last Benes

    .FUNCTIONALITY
        ApigeeEdge

    #>


    [cmdletbinding()]
    PARAM(
        [Parameter(Mandatory=$True)][string]$Name,
        [Parameter(Mandatory=$True)][string]$Email,
        [Parameter(Mandatory=$True)][string]$First,
        [Parameter(Mandatory=$True)][string]$Last,
        [hashtable]$Attributes,
        [string]$Org
    )
    
    $Options = @{ }
    
    if ($PSBoundParameters['Debug']) {
        $Options.Add( 'Debug', $Debug )
    }
    
    if (!$PSBoundParameters['Email']) {
      throw [System.ArgumentNullException] "Email", "You must specify the -Email option."
    }
    if (!$PSBoundParameters['First']) {
      throw [System.ArgumentNullException] "First", "You must specify the -First option."
    }
    if (!$PSBoundParameters['Last']) {
      throw [System.ArgumentNullException] "Last", "You must specify the -Last option."
    }
    if (!$PSBoundParameters['Name']) {
      throw [System.ArgumentNullException] "Name", "You must specify the -Name option."
    }

    $Options.Add( 'Collection', 'developers' )
    if ($PSBoundParameters['Org']) {
        $Options.Add( 'Org', $Org )
    }

    $Payload = @{
      email = $Email
      userName = $Name
      firstName = $First
      lastName = $Last
      status = 'active'
    }

    if ($PSBoundParameters['Attributes']) {
      $a = @(ConvertFrom-HashtableToAttrList -Values $Attributes)
      $Payload.Add('attributes', $a )
    }
    $Options.Add( 'Payload', $Payload )

    Send-EdgeRequest @Options
}