Introspect pairs
POSThttps://apis.<domain>/iam/introspect_pairs
Introspect pairs
Request
- application/json
Body
required
pairs object[]
Responses
- 200
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
pairs object[]
{
"pairs": [
{
"resource": "string",
"action": "string"
}
]
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X POST 'https://apis.<domain>/iam/introspect_pairs' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"pairs": [
{
"resource": "string",
"action": "string"
}
]
}'