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)REQUIRED
- The ID or slug of the organization. 
- project_id_or_slug(string)REQUIRED
- The 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:foo@example.com
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": "sentry@example.com" } ]
Was this helpful?