List all email addresses for a user
GET
/admin/users/{username}/emails
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”username
required
string
Username of user to get email addresses of
Responses
Section titled “Responses”EmailList
Media typeapplication/json
Array<object>
Email an email address belonging to a user
object
email
string format: email
primary
boolean
user_id
integer format: int64
username
string
verified
boolean
Examplegenerated
[ { "email": "hello@example.com", "primary": true, "user_id": 1, "username": "example", "verified": true }]APIForbiddenError is a forbidden error response
Media typeapplication/json
object
message
string
url
string
Examplegenerated
{ "message": "example", "url": "example"}APINotFound is a not found error response
Media typeapplication/json
object
errors
Array<string>
message
string
url
string
Examplegenerated
{ "errors": [ "example" ], "message": "example", "url": "example"}