Responses

  • 200 application/json

    Return the list of permissions

  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
  • Forbidden - You don't have permission to access this route

GET /manager/me/permissions
curl \
 -X GET https://domain.tld/api/v2/manager/me/permissions \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  "ambassadors.view",
  "products.*",
  "orders.*"
]
Response examples (401)
{
  "message": "Unauthorized."
}