Update the user email
PUT /api/me/email
PUT /api/me/emailInteractive request editor loads with JavaScript.
X-API-KEY<token>
In: header
Request Body
application/json
Response Body
application/json
curl -X PUT "$API_BASE_URL/api/me/email" \ -H "Content-Type: application/json" \ -d '{ "email": "user@example.com" }'Operation completed successfully with no response body.
""Invalid arguments. Error details will be provided in the response.
Complete operation details and schema variants
PUT /api/me/email
Update the user email
Update the email address for the currently authenticated user account.
Parameters
Request body
Content type: application/json
email(string, required):
Responses
200: Operation completed successfully with no response body.400: Invalid arguments. Error details will be provided in the response.
cURL
curl -X PUT '$API_BASE_URL/api/me/email'