POST auth/cognito/create

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.

Example

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 Content

Security

No authentication is required.

URL Parameters

NONE

Query Parameters

NONE

Request Body

NameDescriptionValue
idthe user's Cognito user IDstring
emailthe user's email addressstring
usernamethe user's desired user namestring

Response

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.

Response Body

NONE