Complete the user account creation process by providing an email verification code.
POST /api/v1/auth/email/verify HTTP/1.1
Accept: application/json
Content-Type: application/json
{
"email": "tcoles@elinemedia.com",
"code": "123abc",
"provider": "steam"
}
----------------------------------------
HTTP/1.1 204 No ContentAPI authentication is not required.
NONE
NONE
| Name | Description | Value |
|---|---|---|
| the user's email address | string | |
| code | the verification code | string |
| provider | which account provider was used to create this account | one of:
|
A successful response is an empty 204. At this point the user should re-attempt their login.
Besides the standard error responses, 400 is returned if any of the information cannot be matched to a valid provisional account. Code, provider, and email must all match, and the account must not be expired. If the only problem is an incorrect verification code, the response message will be Wrong verification code..
NONE