Skip to content

List all email addresses for a user

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

Lists all email addresses for a specified user account. Administrators only.

id
required
integer

The ID of the user

page
integer
default: 1 nullable

Current page number

Example
1
per_page
integer
default: 20 nullable

Number of items per page

Example
20

OK

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