API ReferenceAgents

Pipedream — list integrations

Lists Pipedream-backed MCP connections with id, channel_type, and config (app_slug, app_name, app_icon, server_url).

GET
/api/v1/console/agents/{agentId}/integrations/pipedream

Authorization

ApiKeyAuth
AuthorizationBearer <token>

Team API key (prefix sk_). You may also send the key via X-Api-Key header.

In: header

Path Parameters

agentId*string

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/console/agents/string/integrations/pipedream"
{  "message": "Success",  "data": [    {      "id": "string",      "channel_type": "mcp_server",      "config": {        "app_slug": "google-sheets",        "app_name": "Google Sheets",        "app_icon": "https://example.com/icon.png",        "server_url": "https://remote.mcp.pipedream.net"      }    }  ]}
{  "message": "Agent must have a workflow before managing integrations",  "error": "Bad Request",  "code": "workflow_required",  "statusCode": 400,  "request_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"}
{  "message": "Invalid API key.",  "error": "Unauthorized",  "code": "api_key_invalid",  "statusCode": 401,  "request_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"}
{  "message": "This API key is missing the required scope: conversations:read.",  "error": "Forbidden",  "code": "insufficient_scope",  "statusCode": 403,  "request_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"}
{  "message": "Agent not found",  "error": "Not Found",  "code": "not_found",  "statusCode": 404,  "request_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"}