Get a list of all permissions

GET /Api/Permissions

Requires verified email; Requires one of the following permissions: Auth.IndexPermissions

Query parameters

  • Filters string
  • Sorts string
  • Page integer(int32)

    Minimum value is 1, maximum value is 2147483647.

  • PageSize integer(int32)

    Minimum value is 1, maximum value is 2147483647.

Responses

  • 503

    Server Error

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
    • name string | null
    • displayName string | null
    • description string | null
    • dangerous boolean
    • Additional properties are NOT allowed
  • 401

    Unauthorized

  • 403

    Forbidden

GET /Api/Permissions
curl \
 -X GET https://app.lovassy.hu/Api/Permissions \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "name": "string",
    "displayName": "string",
    "description": "string",
    "dangerous": true
  }
]