ApiManagementAuthz
POST
/v1/mgmt/authz/getmodified

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Request Body

application/json

since?string

Changed since given milli epoch UTC time - optional, default to max changelog (change events) TTL

Return the list of targets and resources changed since the given date. Should be used to invalidate local caches.

curl -X POST "https://api.descope.com/v1/mgmt/authz/getmodified" \  -H "Content-Type: application/json" \  -d '{}'
{  "targets": [    "string"  ],  "resources": [    "string"  ],  "schemaChanged": true}
export interface Response {targets?: string[]resources?: string[]schemaChanged?: boolean}
Was this helpful?