Skip to main content

Tenant ID Email Verification Public

POST /api/v1/users/{email}/tenant/{tenantId}/email-verification/public

Description​

Verify the email for a tenant.

Path Parameters​

NameTypeDescription
emailstringThe user's email address (path)
tenantIdstringThe tenant ID (path)

Request Headers​

NameTypeDescription
NoneNo headers

Request Body​

  • Content Type: application/json
  • Body: No body required for this request

Example​

POST /api/v1/users/test@example.com/tenant/12345/email-verification/public
Content-Type: application/json

Response Code: 201 - Created​

Description

Email verification request successfully created.

Example​

{
"message": "Email verification initiated"
}

Method: POST​

>http://your-api-url/api/v1/users/{email}/tenant/{tenantId}/email-verification/public

Headers​

Content-TypeValue
Content-Typeapplication/json

🔑 Authentication bearer​

ParamValueType
token{{accessCode}}string

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request POST \ 
--url /api/v1/users/{email}/tenant/{tenantId}/email-verification/public \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


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