Email Verification for Public User
POST /api/v1/users/{email}/tenant/{tenantId}/email-verification/public
Description
Verify the email of a public user associated with a tenant.
Path Parameters
| Name | Type | Description |
|---|---|---|
email | string | The email address of the user (path) |
tenantId | string | The tenant ID (path) |
Request Headers
| Name | Type | Description |
|---|---|---|
| None | No headers required |
Request Body
- Content Type:
application/json
{}
Response Code: 201 - Created
Description
Email verification initiated successfully.
Response Fields
The response does not contain any specific fields.
Method: POST
>http://your-api-url/api/v1/users/{email}/tenant/{tenantId}/email-verification/public
Headers
| Content-Type | Value |
|---|---|
| apiKey | {{apiKey}} |
🔑 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!