List all access permissions
GET/iam/v1/permissions
Retrieve a list of all permission entities.
Request
Query Parameters
service string
service
resource string
resource
action string
action
Responses
- 200
Successful response.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
count integerrequired
Default value: 1
Total count of the items
items object[]required
accessTypes string[]
allowed_apis object[]
APIs permission controls
method string
REST Method
path string
url path
description string
name string
service.resource.action
{
"count": 1,
"items": [
{
"access_types": [
"read"
],
"allowed_apis": [
{
"method": "get",
"path": "/config/v1/config-versions"
},
{
"method": "get",
"path": "/config/v1/jobs"
}
],
"description": "The ability to read configurations snapshots.",
"name": "prisma_access.config_mgmt.read"
}
]
}
Loading...