GET
/
api
/
v3
/
communities
/
{communityId}
/
permissions
/
me
Get self permission in community
curl --request GET \
  --url https://apix.us.amity.co/api/v3/communities/{communityId}/permissions/me \
  --header 'Authorization: Bearer <token>'
{
  "isCreator": false,
  "permissions": [
    "MUTE_CHANNEL"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

communityId
string
required
Required string length: 1 - 900

Response

Communities permission information for this user

isCreator
boolean

Is this person create this community?

Example:

false

permissions
enum<string>[]