Sample code for 30+ languages & platforms
SQL Server

Amazon Cognito - Admin Create User

See more Amazon Cognito Examples

Creates a new user in the specified user pool.

Chilkat SQL Server Downloads

SQL Server
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    DECLARE @success int
    SELECT @success = 0

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

    DECLARE @rest int
    EXEC @hr = sp_OACreate 'Chilkat.Rest', @rest OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @authAws int
    EXEC @hr = sp_OACreate 'Chilkat.AuthAws', @authAws OUT

    EXEC sp_OASetProperty @authAws, 'AccessKey', 'AWS_ACCESS_KEY'
    EXEC sp_OASetProperty @authAws, 'SecretKey', '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.)
    EXEC sp_OASetProperty @authAws, 'Region', 'us-west-2'
    EXEC sp_OASetProperty @authAws, 'ServiceName', 'cognito-idp'
    -- SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    EXEC sp_OAMethod @rest, 'SetAuthAws', @success OUT, @authAws

    -- URL: https://cognito-idp.us-west-2.amazonaws.com/
    DECLARE @bTls int
    SELECT @bTls = 1
    DECLARE @port int
    SELECT @port = 443
    DECLARE @bAutoReconnect int
    SELECT @bAutoReconnect = 1
    -- Use the same region as specified above.
    EXEC sp_OAMethod @rest, 'Connect', @success OUT, 'cognito-idp.us-west-2.amazonaws.com', @port, @bTls, @bAutoReconnect
    IF @success <> 1
      BEGIN

        EXEC sp_OAGetProperty @rest, 'ConnectFailReason', @iTmp0 OUT
        PRINT 'ConnectFailReason: ' + @iTmp0
        EXEC sp_OAGetProperty @rest, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @rest
        EXEC @hr = sp_OADestroy @authAws
        RETURN
      END

    -- 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"
    -- }
    -- 

    DECLARE @json int
    EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT

    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'DesiredDeliveryMediums[0]', 'SMS'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'DesiredDeliveryMediums[1]', 'EMAIL'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'UserAttributes[0].Name', 'phone_number'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'UserAttributes[0].Value', '+16302581871'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'UserAttributes[1].Name', 'email'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'UserAttributes[1].Value', 'admin@chilkatsoft.com'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'UserPoolId', 'us-west-2_yt6WzO3SA'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'Username', 'Matt'

    EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'Content-Type', 'application/x-amz-json-1.0'
    EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'X-Amz-Target', 'AWSCognitoIdentityProviderService.AdminCreateUser'
    EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'Accept-Encoding', 'identity'

    DECLARE @sbRequestBody int
    EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbRequestBody OUT

    EXEC sp_OAMethod @json, 'EmitSb', @success OUT, @sbRequestBody
    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @rest, 'FullRequestSb', @success OUT, 'POST', '/', @sbRequestBody, @sbResponseBody
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @rest, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @rest
        EXEC @hr = sp_OADestroy @authAws
        EXEC @hr = sp_OADestroy @json
        EXEC @hr = sp_OADestroy @sbRequestBody
        EXEC @hr = sp_OADestroy @sbResponseBody
        RETURN
      END
    DECLARE @respStatusCode int
    EXEC sp_OAGetProperty @rest, 'ResponseStatusCode', @respStatusCode OUT

    PRINT 'response status code = ' + @respStatusCode
    IF @respStatusCode <> 200
      BEGIN

        PRINT 'Response Status Code = ' + @respStatusCode

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @rest, 'ResponseHeader', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Response Body:'
        EXEC sp_OAMethod @sbResponseBody, 'GetAsString', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @rest
        EXEC @hr = sp_OADestroy @authAws
        EXEC @hr = sp_OADestroy @json
        EXEC @hr = sp_OADestroy @sbRequestBody
        EXEC @hr = sp_OADestroy @sbResponseBody
        RETURN
      END

    DECLARE @jsonResponse int
    EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jsonResponse OUT

    EXEC sp_OAMethod @jsonResponse, 'LoadSb', @success OUT, @sbResponseBody

    EXEC sp_OASetProperty @jsonResponse, 'EmitCompact', 0
    EXEC sp_OAMethod @jsonResponse, 'Emit', @sTmp0 OUT
    PRINT @sTmp0

    -- 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"
    --   }
    -- }

    DECLARE @Name nvarchar(4000)

    DECLARE @Value nvarchar(4000)

    DECLARE @UserEnabled int
    EXEC sp_OAMethod @jsonResponse, 'BoolOf', @UserEnabled OUT, 'User.Enabled'
    DECLARE @UserUserCreateDate nvarchar(4000)
    EXEC sp_OAMethod @jsonResponse, 'StringOf', @UserUserCreateDate OUT, 'User.UserCreateDate'
    DECLARE @UserUserLastModifiedDate nvarchar(4000)
    EXEC sp_OAMethod @jsonResponse, 'StringOf', @UserUserLastModifiedDate OUT, 'User.UserLastModifiedDate'
    DECLARE @UserUserStatus nvarchar(4000)
    EXEC sp_OAMethod @jsonResponse, 'StringOf', @UserUserStatus OUT, 'User.UserStatus'
    DECLARE @UserUsername nvarchar(4000)
    EXEC sp_OAMethod @jsonResponse, 'StringOf', @UserUsername OUT, 'User.Username'
    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAMethod @jsonResponse, 'SizeOfArray', @count_i OUT, 'User.Attributes'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jsonResponse, 'I', @i
        EXEC sp_OAMethod @jsonResponse, 'StringOf', @Name OUT, 'User.Attributes[i].Name'
        EXEC sp_OAMethod @jsonResponse, 'StringOf', @Value OUT, 'User.Attributes[i].Value'
        SELECT @i = @i + 1
      END

    EXEC @hr = sp_OADestroy @rest
    EXEC @hr = sp_OADestroy @authAws
    EXEC @hr = sp_OADestroy @json
    EXEC @hr = sp_OADestroy @sbRequestBody
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @jsonResponse


END
GO