Skip to main content
GET
/
governance
/
permissions
/
check
Check user permission
curl --request GET \
  --url https://api.example.com/governance/permissions/check \
  --header 'Authorization: Bearer <token>'
{
  "error": {
    "message": "<string>",
    "request_id": "<string>",
    "timestamp": "2023-11-07T05:31:56Z",
    "details": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.emergence.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

action
string
required

Action to check (e.g., 'can_read', 'can_write', 'can_delete')

resource_type
string
required

Resource type (e.g., 'project', 'secret', 'organization')

resource_id
string
required

Unique identifier of the resource

Response

Successful Response