/apps.permissions.users.list
GET
/apps.permissions.users.listReturns list of user grants and corresponding scopes this app has on a team.
Request
Query Params
token
string
required
Authentication token. Requires scope: none
cursor
string
optional
Paginate through collections of data by setting the cursor
parameter to a next_cursor
attribute returned by a previous request's response_metadata
. Default value fetches the first "page" of the collection. See pagination for more detail.
limit
integer
optional
The maximum number of items to return.
Request samples
Responses
Typical successful paginated response(200)
Typical error response(500)
Typical successful paginated response
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
ok
#/definitions/700149required
Additional properties
integer | number | string | boolean
optional
Exampleresponse
{
"ok": true,
"resources": [
{
"id": "U0DES3UAN",
"scopes": [
"dnd:write:user",
"reminders:write:user"
]
},
{
"id": "U024BFF1M",
"scopes": [
"reminders:write:user"
]
}
],
"response_metadata": {
"next_cursor": "dGVhbTdPMUg5UkFTT0w="
}
}
Last modified: a year ago