Skip to content

List access request condition templates

Request

OAuth 2.0 scope:
  • okta.accounts.read

Lists all access request condition templates

Security
OAuth2(Required scopes: okta.accounts.manageokta.accounts.read)
Path
accountIdstringrequired

The id of the Aerial account

Query
filterstring

A SCIM 2.0 filter expression that filters the results.

Examples:
By status
filter=applyStatus eq "APPLIED"
GET
/{accountId}/governance/api/v1/request-condition-templates
curl -i -X GET \
  'https://okta-aerial-apac.pixtulate.com/{accountId}/governance/api/v1/request-condition-templates?filter=applyStatus%20eq%20%22APPLIED%22' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Success

Bodyapplication/json
Array [
idstring

The ID of the access request condition template

resourcesArray of objects(resources)
applyStatusstringrequired
Enum:"APPLIED""APPLYING""ERROR""NOT_APPLIED""REMOVING""APPLIED_WITH_CHANGES"
requestConditionobject(request-condition-full)

A condition delineates the criteria governing access requests, specifying the requester's identity, the permitted access scope, and the manner in which access can be requested.

]
Response
[ { "id": "020qqli3iolphlqkmrutpt8271c", "applyStatus": "APPLIED", "requestCondition": {} } ]