DorkOS
ApiConnectorsAccessibleSubscriptions

List notifications one agent is allowed to receive

GET
/api/connectors/accessible/subscriptions

Requires a verified API key and an explicit owned agent. Read-only; operation grants do not imply receive access. No event content or private service references are returned.

Query Parameters

agentId*string
Length1 <= length <= 256
cursor?string
Length1 <= length <= 1024
limit?integer
Range1 <= value <= 100

Response Body

application/json

curl -X GET "https://example.com/api/connectors/accessible/subscriptions?agentId=string"
{  "agentId": "string",  "subscriptions": [    {      "id": "string",      "connectionId": "string",      "definitionId": "string",      "eventType": "string",      "displayName": "string",      "deliveryMode": "webhook",      "expectedCadenceSeconds": 1,      "agentId": "string",      "destination": {        "kind": "agent",        "id": "string"      },      "filter": {        "property1": null,        "property2": null      },      "scopeVersion": 1,      "state": "active",      "toolkit": "string",      "label": "string"    }  ],  "nextCursor": "string"}