Add an email address for a user
POST
/api/v4/users/{id}/emails
Adds an email address for a specified user account. Administrators only.
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ” id
required
integer
The ID of the user
Request Body required
Section titled “ Request Body required ” Media type application/json
object
email
required
The email of the user
string
skip_confirmation
Skip confirmation of email and assume it is verified
boolean
Example generated
{ "email": "example", "skip_confirmation": true}Responses
Section titled “ Responses ”Created
Media type application/json
object
id
string
email
string
confirmed_at
string
Example generated
{ "id": "example", "email": "example", "confirmed_at": "example"}Bad Request
Not Found