Verify User Email Public by UserId and Token
GET /api/v1/users/{userId}/verify/{token}/email/public
Description
Verify a user's email publicly using their user ID and token.
Path Parameters
| Name | Type | Description |
|---|---|---|
userId | string | The ID of the user (path) |
token | string | The verification token (path) |
Request Headers
| Name | Type | Description |
|---|---|---|
| None | No headers required |
Request Body
- Content Type:
application/json
No request body is required.
Example
GET /api/v1/users/{userId}/verify/{token}/email/public
Response Code: 200 - OK
Description
Email verified successfully.
Method: GET
>http://your-api-url/api/v1/users/{userId}/verify/{token}/email/public
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v1/users/{userId}/verify/{token}/email/public \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!