POST
/v1/mgmt/authz/getmodified

Get target and resources changes

This endpoint allows you to get a list of Authz target and resources changes since a specific date.

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<ProjectId:ManagementKey\>

Try it

/v1/mgmt/authz/getmodified

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Management Key > as bearer

In: header

Request Body

sincestring

Changed since given milli epoch UTC time - optional default 10 min

Status codeDescription
200OK
curl -X POST "https://api.descope.com/v1/mgmt/authz/getmodified" \
  -d '{
  "since": "string"
}'

{
  "targets": [
    "string"
  ],
  "resources": [
    "string"
  ],
  "schemaChanged": true
}

Was this helpful?