List a Project's Users
GET /api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/users/
Return a list of users seen within this project.
Path Parameters
organization_id_or_slug
(string)REQUIREDThe ID or slug of the organization.
project_id_or_slug
(string)REQUIREDThe ID or slug of the project.
Query Parameters:
query
(string)Limit results to users matching the given query. Prefixes should be used to suggest the field to match on:
id
,email
,username
,ip
. For example,query=email:[email protected]
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:project:read
Copied
curl https://sentry.io/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/users/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
Copied[ { "username": "sentry", "email": "[email protected]" } ]
Was this helpful?