Skip to main content

Get Permission Accesses

POST 

/api/v1/permission/access

Given a permission ID and an IAM query, returns data about the actual permission usage (last access).

The request parameter limit determines the number of itemsthat is, last accessin the response object.

If the amount of available data is greater than the specified limit, use the response object attribute data.nextPageToken as the request parameter pageToken in Get Permissions Access Next Page to request the next page of data.

Request

Body

required

Model for Permission Access Request DTO

    limit int32

    Maximun number of items to return for the given query. Default is 0.

    permissionId stringrequired

    Permission Id

    query stringrequired

    Query string

Responses

OK

Schema
    data object

    Model for Permission Access Result Data DTO

    items object[]

    Permissions list

  • Array [
  • destCloudResourceName string

    Destination cloud resource name

    lastAccessDate string

    Action last access date in the format of a unix timestamp

  • ]
  • nextPageToken string

    Next page token

    totalRows int64

    Total row count

Loading...