/apps.permissions.scopes.list
GET
/apps.permissions.scopes.listReturns list of scopes this app has on a team.
Request
Query Params
token
string
required
Authentication token. Requires scope: none
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
scopes
object
required
app_home
#/definitions/463267optional
channel
#/definitions/463267optional
group
#/definitions/463267optional
im
#/definitions/463267optional
mpim
#/definitions/463267optional
team
#/definitions/463267optional
user
#/definitions/463267optional
Additional properties
integer | number | string | boolean
optional
Additional properties
integer | number | string | boolean
optional
Exampleresponse
{
"ok": true,
"scopes": {
"app_home": [
"chat:write",
"im:history",
"im:read"
],
"channel": [
"channels:history",
"chat:write"
],
"group": [
"chat:write"
],
"im": [
"chat:write"
],
"mpim": [
"chat:write"
],
"team": [
"users:read"
],
"user": []
}
}
Last modified: a year ago