Pipedream · Example Payload

Pipedream Oauth Token Example

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Pipedream Oauth Token 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/oauth/token",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "grant_type": "client_credentials",
      "client_id": "cid_xxx",
      "client_secret": "csec_xxx"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "access_token": "pd_oauth_xxx",
      "token_type": "Bearer",
      "expires_in": 3600
    }
  }
}