POST auth/cognito/verify

The Cognito post-verification callback is called when a user completes sign up through the Cognito user pool. It is called by a Lambda (except in local dev, when we must bypass the callback and call it directly upon login). This callback converts the provisional account into a real account.

Example

POST /api/v1/auth/cognito/verify HTTP/1.1
Content-Type: application/json
Authorization: Signature System:...

{
  "id": "55b10862-54d2-47ac-8581-f850d3d1f624"
}
----------------------------------------
HTTP/1.1 204 No Content

Security

API signature verification is required.

URL Parameters

NONE

Query Parameters

NONE

Request Body

NameDescriptionValue
idthe user's Cognito user IDstring

Response

A successful response is code 204. Error responses are standard.

Response Body

NONE