POST
/
v1
/
connect
/
{project_id}
/
triggers
/
props
cURL
curl --request POST \
  --url https://api.pipedream.com/v1/connect/{project_id}/triggers/props \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-pd-environment: <x-pd-environment>' \
  --data '{
  "id": "<string>",
  "external_user_id": "<string>",
  "blocking": true,
  "configured_props": {},
  "dynamic_props_id": "<string>"
}'
{
  "observations": {},
  "errors": [
    "<string>"
  ],
  "dynamicProps": {
    "id": "<string>",
    "configurableProps": [
      {
        "name": "<string>",
        "type": "<string>",
        "label": "<string>",
        "description": "<string>",
        "optional": true,
        "disabled": true,
        "hidden": true,
        "remoteOptions": true,
        "useQuery": true,
        "reloadProps": true,
        "withLabel": true
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

x-pd-environment
enum<string>
required

The environment in which the server client is running

Available options:
development,
production

Path Parameters

project_id
string
required

The project ID, which starts with 'proj_'.

Body

application/json

Request options for reloading a component's props when dealing with dynamic props

Response

200
application/json

trigger props reloaded

Response from reloading component props