Continue new account creation workflow for Cognito by providing their ID, a username, and an email address. This creates a provisional account for the user.
POST /api/v1/auth/cognito/create HTTP/1.1
Content-Type: application/json
{
"id": "55b10862-54d2-47ac-8581-f850d3d1f624",
"email": "tcoles@elinemedia.com",
"username": "tcoles"
}
----------------------------------------
HTTP/1.1 204 No ContentNo authentication is required.
NONE
NONE
| Name | Description | Value |
|---|---|---|
| id | the user's Cognito user ID | string |
| the user's email address | string | |
| username | the user's desired user name | string |
A successful response is code 204. At this point, the user should expect to receive a verification code via their provided email adress. Error responses are standard.
NONE