List a Project's Users

GET /api/0/projects/{organization_slug}/{project_slug}/users/

Return a list of users seen within this project.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization.

project_slug (string)
REQUIRED

The 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

<auth_token> requires one of the following scopes:
  • project:read
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/users/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
  {
    "username": "sentry",
    "email": "sentry@example.com"
  }
]