Authorizations
Headers
Available options:
development, production Query Parameters
Response
- Option 1
- Option 2
- Option 3
curl --request PUT \
--url https://api.pipedream.com/v1/connect/{project_id}/deployed-triggers/{trigger_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-pd-environment: <x-pd-environment>' \
--data '{
"active": true,
"configured_props": {},
"name": "<string>"
}'{
"data": {
"id": "<string>",
"owner_id": "<string>",
"component_id": "<string>",
"component_key": "<string>",
"configurable_props": [
{
"name": "<string>",
"type": "$.airtable.baseId",
"label": "<string>",
"description": "<string>",
"optional": true,
"disabled": true,
"hidden": true,
"remoteOptions": true,
"useQuery": true,
"reloadProps": true,
"withLabel": true
}
],
"configured_props": {},
"active": true,
"created_at": 123,
"updated_at": 123,
"name": "<string>",
"name_slug": "<string>",
"callback_observations": "<any>",
"type": "DeployedComponent"
}
}Modify the configuration of a deployed trigger, including active status
curl --request PUT \
--url https://api.pipedream.com/v1/connect/{project_id}/deployed-triggers/{trigger_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-pd-environment: <x-pd-environment>' \
--data '{
"active": true,
"configured_props": {},
"name": "<string>"
}'{
"data": {
"id": "<string>",
"owner_id": "<string>",
"component_id": "<string>",
"component_key": "<string>",
"configurable_props": [
{
"name": "<string>",
"type": "$.airtable.baseId",
"label": "<string>",
"description": "<string>",
"optional": true,
"disabled": true,
"hidden": true,
"remoteOptions": true,
"useQuery": true,
"reloadProps": true,
"withLabel": true
}
],
"configured_props": {},
"active": true,
"created_at": 123,
"updated_at": 123,
"name": "<string>",
"name_slug": "<string>",
"callback_observations": "<any>",
"type": "DeployedComponent"
}
}development, production Show child attributes
Was this page helpful?