Retrieve credential capabilities
GET
/capabilitiesReturns the permissions currently in effect for the authenticated credential, together with the permission catalog version, the environment, and the rate limits that apply to the credential.
Any authenticated credential can call this operation; no specific permission is required. The call is read-only and does not grant or change any permissions.
AuthorizationBearer <token>
Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.
In: header
Response Body
application/json
application/json
curl -X GET "https://example.com/capabilities"{ "data": { "api_version": "v3", "capabilities": [ "string" ], "catalog_version": "string", "deprecations": [ { "deprecated_at": "2019-08-24", "operation_id": "string", "sunset_at": "2019-08-24" } ], "environment": "production", "instance": { "environment": "production", "sandbox": true }, "limits": { "burst": 0, "ops_per_minute": 0 }, "object": "capabilities", "release": "string", "resources": [ { "parent": "string", "prefix": "string", "type": "string" } ] }}