POST /users/verification-email – Sends a verification email to a user.
Headers:
Authorization: Bearer <access_token>
Content-Type: application/json or application/x-www-form-urlencoded
Body:
Path Parameters:
Query Parameters:
201 Created
400
401
404
429
500
{ "error": "Detailed error message here"} Copy
{ "error": "Detailed error message here"}
POST /users/verification-email{ "provider": "auth0-user", "userId": "exampleUserId", "clientId": "client_xyz"} Copy
POST /users/verification-email{ "provider": "auth0-user", "userId": "exampleUserId", "clientId": "client_xyz"}
POST /users/verification-email{ "provider": "cognito-user", "userId": "cognitoUser@email.com", "clientId": "client_xyz"} Copy
POST /users/verification-email{ "provider": "cognito-user", "userId": "cognitoUser@email.com", "clientId": "client_xyz"}
{} Copy
{}
The API Gateway event containing the request.
A Promise resolving to an API Gateway-compatible response.
POST /users/verification-email – Sends a verification email to a user.
Remarks
📥 Request
Headers:
Authorization: Bearer <access_token>(required)Content-Type: application/json or application/x-www-form-urlencoded(required)Body:
Path Parameters:
Query Parameters:
📤 Response
201 Created– Verification email successfully sent.❗ Errors
400401404429500Error Response Format
📦 Examples
📥 Auth0 Request
📥 Cognito Request
📤 Response Example