List user emails
GET /api/0/users/{user_id}/emails/
Returns a list of emails. Primary email will have isPrimary: true
Path Parameters
user_id
(string)REQUIREDThe ID of the user the resource belongs to.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:
Copied
curl https://sentry.io/api/0/users/{user_id}/emails/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
Copied[ { "email": "billy@sentry.io", "isPrimary": true, "isVerified": true }, { "email": "billybob@sentry.io", "isPrimary": false, "isVerified": true } ]