Sample code for 30+ languages & platforms
PureBasic

Amazon Cognito - Admin Create User

See more Amazon Cognito Examples

Creates a new user in the specified user pool.

Chilkat PureBasic Downloads

PureBasic
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkAuthAws.pb"
IncludeFile "CkJsonObject.pb"
IncludeFile "CkRest.pb"

Procedure ChilkatExample()

    success.i = 0

    ; This example requires the Chilkat API to have been previously unlocked.
    ; See Global Unlock Sample for sample code.

    rest.i = CkRest::ckCreate()
    If rest.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    authAws.i = CkAuthAws::ckCreate()
    If authAws.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkAuthAws::setCkAccessKey(authAws, "AWS_ACCESS_KEY")
    CkAuthAws::setCkSecretKey(authAws, "AWS_SECRET_KEY")
    ; Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
    CkAuthAws::setCkRegion(authAws, "us-west-2")
    CkAuthAws::setCkServiceName(authAws, "cognito-idp")
    ; SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    CkRest::ckSetAuthAws(rest,authAws)

    ; URL: https://cognito-idp.us-west-2.amazonaws.com/
    bTls.i = 1
    port.i = 443
    bAutoReconnect.i = 1
    ; Use the same region as specified above.
    success = CkRest::ckConnect(rest,"cognito-idp.us-west-2.amazonaws.com",port,bTls,bAutoReconnect)
    If success <> 1
        Debug "ConnectFailReason: " + Str(CkRest::ckConnectFailReason(rest))
        Debug CkRest::ckLastErrorText(rest)
        CkRest::ckDispose(rest)
        CkAuthAws::ckDispose(authAws)
        ProcedureReturn
    EndIf

    ; Use this online tool to generate code from sample JSON:
    ; Generate Code to Create JSON

    ; The following JSON is sent in the request body.

    ; {
    ;     "DesiredDeliveryMediums" : [ "SMS", "EMAIL" ],	
    ;     "UserAttributes": [
    ;          {
    ;            "Name": "phone_number",
    ;            "Value": "+16302581871"
    ;          },
    ;          {
    ;            "Name": "email",
    ;            "Value": "admin@chilkatsoft.com"
    ;          }
    ;        ],
    ;      "UserPoolId": "us-west-2_yt6WzO3SA",
    ;      "Username": "Matt"
    ; }
    ; 

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(json,"DesiredDeliveryMediums[0]","SMS")
    CkJsonObject::ckUpdateString(json,"DesiredDeliveryMediums[1]","EMAIL")
    CkJsonObject::ckUpdateString(json,"UserAttributes[0].Name","phone_number")
    CkJsonObject::ckUpdateString(json,"UserAttributes[0].Value","+16302581871")
    CkJsonObject::ckUpdateString(json,"UserAttributes[1].Name","email")
    CkJsonObject::ckUpdateString(json,"UserAttributes[1].Value","admin@chilkatsoft.com")
    CkJsonObject::ckUpdateString(json,"UserPoolId","us-west-2_yt6WzO3SA")
    CkJsonObject::ckUpdateString(json,"Username","Matt")

    CkRest::ckAddHeader(rest,"Content-Type","application/x-amz-json-1.0")
    CkRest::ckAddHeader(rest,"X-Amz-Target","AWSCognitoIdentityProviderService.AdminCreateUser")
    CkRest::ckAddHeader(rest,"Accept-Encoding","identity")

    sbRequestBody.i = CkStringBuilder::ckCreate()
    If sbRequestBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckEmitSb(json,sbRequestBody)
    sbResponseBody.i = CkStringBuilder::ckCreate()
    If sbResponseBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success = CkRest::ckFullRequestSb(rest,"POST","/",sbRequestBody,sbResponseBody)
    If success <> 1
        Debug CkRest::ckLastErrorText(rest)
        CkRest::ckDispose(rest)
        CkAuthAws::ckDispose(authAws)
        CkJsonObject::ckDispose(json)
        CkStringBuilder::ckDispose(sbRequestBody)
        CkStringBuilder::ckDispose(sbResponseBody)
        ProcedureReturn
    EndIf

    respStatusCode.i = CkRest::ckResponseStatusCode(rest)
    Debug "response status code = " + Str(respStatusCode)
    If respStatusCode <> 200
        Debug "Response Status Code = " + Str(respStatusCode)
        Debug "Response Header:"
        Debug CkRest::ckResponseHeader(rest)
        Debug "Response Body:"
        Debug CkStringBuilder::ckGetAsString(sbResponseBody)
        CkRest::ckDispose(rest)
        CkAuthAws::ckDispose(authAws)
        CkJsonObject::ckDispose(json)
        CkStringBuilder::ckDispose(sbRequestBody)
        CkStringBuilder::ckDispose(sbResponseBody)
        ProcedureReturn
    EndIf

    jsonResponse.i = CkJsonObject::ckCreate()
    If jsonResponse.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckLoadSb(jsonResponse,sbResponseBody)

    CkJsonObject::setCkEmitCompact(jsonResponse, 0)
    Debug CkJsonObject::ckEmit(jsonResponse)

    ; Sample JSON response:
    ; (Sample code for parsing the JSON response is shown below)

    ; Use this online tool to generate parsing code from sample JSON: 
    ; Generate Parsing Code from JSON

    ; {
    ;   "User": {
    ;     "Attributes": [
    ;       {
    ;         "Name": "sub",
    ;         "Value": "dcd3db0c-32cf-4a33-a6b2-173653f7c0e7"
    ;       },
    ;       {
    ;         "Name": "phone_number",
    ;         "Value": "+16302581871"
    ;       },
    ;       {
    ;         "Name": "email",
    ;         "Value": "admin@chilkatsoft.com"
    ;       }
    ;     ],
    ;     "Enabled": true,
    ;     "UserCreateDate": 1.636407153801E9,
    ;     "UserLastModifiedDate": 1.636407153801E9,
    ;     "UserStatus": "FORCE_CHANGE_PASSWORD",
    ;     "Username": "matt"
    ;   }
    ; }

    Name.s
    Value.s

    UserEnabled.i = CkJsonObject::ckBoolOf(jsonResponse,"User.Enabled")
    UserUserCreateDate.s = CkJsonObject::ckStringOf(jsonResponse,"User.UserCreateDate")
    UserUserLastModifiedDate.s = CkJsonObject::ckStringOf(jsonResponse,"User.UserLastModifiedDate")
    UserUserStatus.s = CkJsonObject::ckStringOf(jsonResponse,"User.UserStatus")
    UserUsername.s = CkJsonObject::ckStringOf(jsonResponse,"User.Username")
    i.i = 0
    count_i.i = CkJsonObject::ckSizeOfArray(jsonResponse,"User.Attributes")
    While i < count_i
        CkJsonObject::setCkI(jsonResponse, i)
        Name = CkJsonObject::ckStringOf(jsonResponse,"User.Attributes[i].Name")
        Value = CkJsonObject::ckStringOf(jsonResponse,"User.Attributes[i].Value")
        i = i + 1
    Wend


    CkRest::ckDispose(rest)
    CkAuthAws::ckDispose(authAws)
    CkJsonObject::ckDispose(json)
    CkStringBuilder::ckDispose(sbRequestBody)
    CkStringBuilder::ckDispose(sbResponseBody)
    CkJsonObject::ckDispose(jsonResponse)


    ProcedureReturn
EndProcedure