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.
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 ContentAPI signature verification is required.
NONE
NONE
| Name | Description | Value |
|---|---|---|
| id | the user's Cognito user ID | string |
A successful response is code 204. Error responses are standard.
NONE