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 Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
email
required
The email of the user
string
skip_confirmation
Skip confirmation of email and assume it is verified
boolean
Examplegenerated
{ "email": "example", "skip_confirmation": true}Responses
Section titled “Responses”Created
Media typeapplication/json
object
id
string
email
string
confirmed_at
string
Examplegenerated
{ "id": "example", "email": "example", "confirmed_at": "example"}Bad Request
Not Found