Connectors

List Connectors

GET
/app/connectors
x-api-key<token>

Authenticate using API Key in request header

In: header

Query Parameters

workflowID?string

Filter connectors by workflow API ID (e.g. wf_...).

If both workflowID and workflowName are provided, results must match both.

workflowName?string

Filter connectors by workflow name (exact match).

If both workflowID and workflowName are provided, results must match both.

Response Body

application/json

curl -X GET "https://api.bem.ai/app/connectors"
{
  "connectors": [
    {
      "type": "box",
      "connectorID": "string",
      "name": "string",
      "workflowID": "string",
      "workflowName": "string",
      "boxClientID": "string",
      "boxClientSecret": "string",
      "boxEnterpriseID": "string",
      "boxFolderID": "string"
    }
  ]
}