Pipedream · Example Payload

Pipedream Deploy Trigger Example

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Pipedream Deploy Trigger 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": "POST",
    "url": "https://api.pipedream.com/v1/connect/proj_abc/triggers/deploy",
    "headers": {
      "Authorization": "Bearer pd_oauth_xxx",
      "x-pd-environment": "production",
      "Content-Type": "application/json"
    },
    "body": {
      "id": "github-new-issue",
      "external_user_id": "user_42",
      "configured_props": {
        "github": {
          "authProvisionId": "apn_gh1"
        },
        "repoFullname": "PipedreamHQ/pipedream"
      },
      "webhook_url": "https://example.com/webhooks/pd"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": {
        "id": "dc_xyz",
        "name": "GitHub - New Issue",
        "active": true,
        "configurable_props": [],
        "configured_props": {}
      }
    }
  }
}