List a Project's 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 the following scopes:project:read
GET /api/0/projects/{organization_slug}/{project_slug}/users/
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/users/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
{
"dateCreated": "2020-07-16T00:50:40.342174Z",
"id": "21077833046",
"username": "sentry",
"email": "sentry@example.com"
}
]