Skip to main content
Version: Next

Query authorizations (alpha)

POST 

/authorizations/search

Search for authorizations based on given criteria.

Note that this endpoint is an alpha feature and not enabled on Camunda clusters out of the box. The Camunda 8 API (REST) Overview page provides further details.

note

This endpoint is an alpha feature and may be subject to change in future releases.

Request

Body

required
    sort object[]
  • Array [
  • field stringrequired
    order string

    Default value: asc

  • ]
  • page object
    from int32
    limit int32
    searchAfter object[]
    searchBefore object[]
    filter object
    ownerType object

    Possible values: [USER, ROLE, GROUP, MAPPING, UNSPECIFIED]

    The type of the owner of permissions.

    ownerKey int64

    The id of the owner of permissions.

Responses

The authorization search result.

Schema
    page object
    totalItems int64
    firstSortValues object[]
    lastSortValues object[]
    items object[]
  • Array [
  • ownerKey int64

    The id of the owner of permissions.

    ownerType object

    The type of the owner of permissions.

    resourceType object

    The type of resource to add/remove permissions to/from.

    permissions object[]

    The permissions.

  • Array [
  • permissionType object

    Specifies the type of permissions.

    resourceIds string[]

    A list of resource IDs the permission relates to.

  • ]
  • ]
Loading...