Tenant ID Email Verification Public
POST /api/v1/users/{email}/tenant/{tenantId}/email-verification/public
Description
Verify the email for a tenant.
Path Parameters
| Name | Type | Description |
|---|---|---|
email | string | The user's email address (path) |
tenantId | string | The tenant ID (path) |
Request Headers
| Name | Type | Description |
|---|---|---|
| None | No 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-Type | Value |
|---|---|
| Content-Type | application/json |
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
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!