Skip to content

Add an email address for a user

POST
/api/v4/users/{id}/emails

Adds an email address for a specified user account. Administrators only.

id
required
integer

The ID of the user

Media type application/json
object
email
required

The email of the user

string
nullable
skip_confirmation

Skip confirmation of email and assume it is verified

boolean
nullable
Example generated
{
"email": "example",
"skip_confirmation": true
}

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