Skip to content
Last updated

Enable or disable a personal connector.

PATCHhttps://api.aitronos.com/v1/personal-connectors/{connector_id}

Path Parameters

connector_id string required Connector ID (e.g., pcon_abc123).

Request Body

is_active boolean required Whether to enable (true) or disable (false) the connector.

Returns

The updated connector object with the new status.

Bash
curl -X PATCH "https://api.aitronos.com/v1/personal-connectors/pcon_abc123" \
  -H "X-API-Key: $FREDDY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "is_active": true
  }'

Response:

{
  "connector_id": "pcon_abc123",
  "connector_type": "atlassian",
  "account_email": "user@example.com",
  "is_active": true,
  "last_sync_at": "2025-11-14T10:30:00Z",
  "created_at": "2025-11-10T08:00:00Z",
  "mcp_configuration_id": "mcp_xyz789"
}