POST /users/verification-email-by-email - Sends a verification email to a specified email address.


Body:

Path Parameters:

  • None

Query Parameters:

  • None

  • 201 Created – Verification email successfully sent.

Status Code Meaning When it Happens
400 Bad Request Missing or invalid parameters
401 Unauthorized Missing or invalid authentication token
404 Not Found Email not found
429 Too Many Requests Rate limit exceeded
500 Internal Server Error Unexpected error
{
"error": "Detailed error message here"
}

POST /users/verification-email-by-email
{
"provider": "auth0-user",
"clientId": "client_xyz",
"email": "user@district.com",
"accountProvider": "account_abc",
"connection": "conn_xyz",
}
POST /users/verification-email-by-email
{
"provider": "cognito-user",
"clientId": "client_xyz",
"email": "user@district.com",
"userPoolId": "us-east-1_1234test",
}
{}

  • Parameters

    • event: APIGatewayProxyEvent

      The API Gateway event containing the request.

    • context: Context
    • callback: Callback<APIGatewayProxyResult>

    Returns void | Promise<APIGatewayProxyResult>

    A Promise resolving to an API Gateway-compatible response.