Skip to main content

Send an email verification token

POST /api/v1/users/:userId/email-verification

Description

Send an email verification token to a user.

Headers:

  • Content-Type: application/json
  • Authorization: Bearer {{bearerToken}}

URL: /api/v1/users/:userId/email-verification

  • Path Parameters:

    • userId (Required): User ID

Response: The response is "Created" with a code of 201.

/api/v1/users/:userId/email-verification

🔑 Authentication bearer

ParamvalueType
tokenbearerTokenstring

Response: 201

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request POST \ 
--url /api/v1/users/:userId/email-verification \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!