Skip to main content
POST
/
api
/
v1
/
automation
/
connections
/
{id}
/
test
curl -X POST "https://your-collabase.ch/api/v1/automation/connections/conn-abc/test" \
  -H "Authorization: Bearer cba_live_..."
{ "ok": true, "message": "Connected as @collabase-bot" }
Calls the connector’s testConnection method using the stored credentials. Returns whether the credentials are valid and an optional diagnostic message.

Path parameters

id
string
required
Connection ID to test.

Response

ok
boolean
true if credentials are valid.
message
string
Human-readable result or error detail.
curl -X POST "https://your-collabase.ch/api/v1/automation/connections/conn-abc/test" \
  -H "Authorization: Bearer cba_live_..."
{ "ok": true, "message": "Connected as @collabase-bot" }