Pipedream · Example Payload

Pipedream List Accounts Example

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Pipedream List Accounts Example is an example object payload from Pipedream, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.pipedream.com/v1/connect/proj_abc/accounts?external_user_id=user_42&app=notion",
    "headers": {
      "Authorization": "Bearer pd_oauth_xxx",
      "x-pd-environment": "production"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": [
        {
          "id": "apn_abc",
          "name": "My Notion",
          "external_id": "user_42",
          "healthy": true,
          "dead": false,
          "app": {
            "name_slug": "notion",
            "name": "Notion"
          },
          "created_at": "2026-04-01T00:00:00Z"
        }
      ]
    }
  }
}