Authorizations
Headers
Available options:
development, production Query Parameters
Response
- Option 1
- Option 2
- Option 3
Workday announces intent to acquire Pipedream Learn more
curl --request GET \
--url https://api.pipedream.com/v1/connect/{project_id}/deployed-triggers/{trigger_id} \
--header 'Authorization: Bearer <token>' \
--header 'x-pd-environment: <x-pd-environment>'{
"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"
}
}Get details of a specific deployed trigger by its ID
curl --request GET \
--url https://api.pipedream.com/v1/connect/{project_id}/deployed-triggers/{trigger_id} \
--header 'Authorization: Bearer <token>' \
--header 'x-pd-environment: <x-pd-environment>'{
"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?