Okta Identity Governance
/Management APIs
//
List all risk rules
Lists all risk rules
Specifies the pagination cursor for the next page of results. Treat this as an opaque value obtained through the standard link headers. See pagination.
Example:after=00u68w6vzKLultXS97g6
A filter expression that returns entries based on the resourceOrn and name properties and supports the following operators:
eqoperator for theresourceOrnpropertyswandcooperator for thenameproperty
Note: Query parameter percent encoding is required. See Special characters.
Example:filter=name sw "Process"
Examples:
Search for risk rules with a name that begins with "Process"
filter=name sw "Process"Search for risk rules with a name that contains "Process"
filter=name co "Process"Search for risk rules with a specific resource ORN
filter=resourceOrn eq "orn:okta:idp:00o11edPwGqbUrsDm0g4:apps:oidc:0oafxqCAJWWGELFTYASJ"GET
curl -i -X GET \
'https://okta-subdomain.pixtulate.com/governance/api/v1/risk-rules?limit=20&after=00u68w6vzKLultXS97g6&filter=name%20sw%20%22Process%22'Risk rules retrieved successfully
Link relations available using the JSON Hypertext Application Language
Response
{ "data": [ { … } ], "_links": { "self": { … }, "next": { … } }, "metadata": { "total": 10 } }