Confirm User's Change Email
This endpoint confirms email change
info
This operation does not require authentication.
HTTP Request
POST /api/v2/user/{id}/confirm_email/
Parameters
| Name | In | Type | Required | Description | 
|---|---|---|---|---|
| id | path | string | true | A unique integer value identifying this user | 
| new_email | body | string(email) | true | New email to confirm | 
| validation_code | body | string | false | Validation code obtained with Change User's Email | 
Example Body Parameters
- JSON
{
  "new_email": "string",
  "validation_code": "string"
}
Example Request
- JavaScript
- Bash
const inputBody = '{
  "new_email": "string",
  "confirm": "boolean",
  "validation_code": "string"
}';
const headers = {
  'Content-Type':'application/x-www-form-urlencoded',
  'Accept':'application/json',
  'Authorization: Bearer <token>'
};
fetch('/api/v2/user/{id}/confirm_email/',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});
# You can also use wget
curl -X POST /api/v2/user/{id}/confirm_email/ \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -H 'Accept: application/json'
  -H "Authorization: Bearer <token>"
Responses
| Status | Meaning | Description | Schema | 
|---|---|---|---|
| 204 | No Content | Response status code | None |