Authorizations
Headers
Available options:
development, production Workday announces intent to acquire Pipedream Learn more
curl --request GET \
--url https://api.pipedream.com/v1/connect/{project_id}/triggers \
--header 'Authorization: Bearer <token>' \
--header 'x-pd-environment: <x-pd-environment>'{
"data": [
{
"key": "<string>",
"name": "<string>",
"version": "<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
}
],
"description": "<string>",
"component_type": "<string>",
"stash": "optional",
"annotations": {
"destructiveHint": true,
"idempotentHint": true,
"openWorldHint": true,
"readOnlyHint": true,
"title": "<string>"
}
}
],
"page_info": {
"count": 123,
"total_count": 123,
"start_cursor": "<string>",
"end_cursor": "<string>"
}
}Retrieve available triggers with optional search and app filtering
curl --request GET \
--url https://api.pipedream.com/v1/connect/{project_id}/triggers \
--header 'Authorization: Bearer <token>' \
--header 'x-pd-environment: <x-pd-environment>'{
"data": [
{
"key": "<string>",
"name": "<string>",
"version": "<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
}
],
"description": "<string>",
"component_type": "<string>",
"stash": "optional",
"annotations": {
"destructiveHint": true,
"idempotentHint": true,
"openWorldHint": true,
"readOnlyHint": true,
"title": "<string>"
}
}
],
"page_info": {
"count": 123,
"total_count": 123,
"start_cursor": "<string>",
"end_cursor": "<string>"
}
}development, production Was this page helpful?