API Reference/Management/Authz
POST
/v1/mgmt/authz/getmodified

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Management Key > as bearer

In: header

Request Body

application/jsonRequired
sincestring

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

curl -X POST "https://api.descope.com/v1/mgmt/authz/getmodified" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "since": "string"
  }'

OK

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

Was this helpful?