Resend Verification
watch.auth.user.resend_verification
Sends the account verification email again to the authenticated viewer, for use when the original email was lost or expired.
Headers
| Header | Value |
|---|---|
| Authorization | JWT token |
| ClientID | platform-\<id>-app_version-\<id> |
The ClientID header is required. It must have four hyphen-separated components, and the first component must be one of web, roku, firestick, fireos, appletv, ipad, tizen.
Endpoint
POST v2/watch/auth/resend-verification-email
This endpoint takes no request body. The viewer is identified from the token.
Response Body
{
"message": "Verification email resent successfully.",
"status_code": "W0000",
"status_message": "Success"
}
| Field | Type | Description |
|---|---|---|
message |
String | Confirmation that the verification email was sent. |
status_code |
String | The Indee status code for the response. |
status_message |
String | Human readable message describing the response. |
Status Codes
| Indee status code | HTTP Response Code | Description |
|---|---|---|
| W0000 | HTTP 200 | Success |
| W2000 | HTTP 401 | Authorization header was either not passed or there was some issue parsing it |
| W2003 | HTTP 401 | Invalid auth token |
| W2009 | HTTP 401 | ClientID header was either not passed or is malformed |
| W2100 | HTTP 403 | Sign up is not enabled for this watch product |
| W2101 | HTTP 403 | API key not authorized to perform this action |
| W2102 | HTTP 451 | Request blocked by geofencing for the resolved region |
| W5001 | HTTP 429 | Rate limited |
| W5000 | HTTP 500 | Unknown server error occurred |