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)REQUIREDThe slug of the organization.
project_slug
(string)REQUIREDThe 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
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/users/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
{
"username": "sentry",
"email": "sentry@example.com"
}
]