Get Permissions Access Next Page
POST/api/v1/permission/access/page
Given a request parameter pageToken, returns the next page of permissions data. You can find the value for pageToken from the response object of a previous request to Get Permissions Access
Request
- application/json
Body
required
Model for Permission Access Page Request DTO
limit int32
Maximun number of items to return for the given query. Default is 0.
pageToken string
Page token (default: empty string)
Responses
- 200
- 201
- 401
- 403
- 404
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
items object[]
Permissions list
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
{
"items": [
{
"destCloudResourceName": "my-function",
"lastAccessDate": "1593691785"
}
],
"nextPageToken": "++fdfkjsdlfsdfdFDSFDFSDFdfdssfdFDS",
"totalRows": 1243
}
Created
Unauthorize
Forbidden
Not Found
Loading...