connectors

Manage platform connectors attached to agents.

List Connectors

GET /api/agents/:agentId/connectors

Create Connector

POST /api/agents/:agentId/connectors
Content-Type: application/json

{
  "type": "discord",
  "name": "My Discord Bot",
  "configJson": { "botToken": "...", "guildId": "..." },
  "enabled": true
}

Update Connector

PUT /api/connectors/:id
Content-Type: application/json

{ "enabled": false }

Delete Connector

Returns 204.

See the Connectors Referencearrow-up-right for all auth types and required fields.

Was this helpful?