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>",
"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>",
"type": "DeployedComponent",
"component_key": "<string>",
"callback_observations": "<unknown>"
}
}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>",
"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>",
"type": "DeployedComponent",
"component_key": "<string>",
"callback_observations": "<unknown>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The access token received from the authorization server in the OAuth 2.0 flow.
The environment in which the server client is running The environment in which the server client is running
development, production The project ID, which starts with 'proj_'.
Your end user ID, for whom you deployed the trigger
deployed trigger retrieved
Response received when retrieving a deployed trigger
A component/interface that emits events
Show child attributes
The unique ID of the deployed component
The ID of the owner
The ID of the component that was deployed
The configurable properties of the component
Show child attributes
When building configuredProps, make sure to use this field as the key when setting the prop value
$.airtable.baseId, $.airtable.fieldId, $.airtable.tableId, $.airtable.viewId, $.discord.channel, $.discord.channel[], $.interface.apphook, $.interface.http, $.interface.timer, $.service.db, alert, any, app, boolean, data_store, dir, http_request, integer, integer[], object, sql, string, string[] Value to use as an input label. In cases where type is "app", should load the app via getApp, etc. and show app.name instead.
A description of the prop, shown to the user when configuring the component.
If true, this prop does not need to be specified.
If true, this prop will be ignored.
If true, should not expose this prop to the user
If true, call configureComponent for this prop to load remote options. It is safe, and preferred, given a returned list of { label: string; value: any } objects to set the prop value to { __lv: { label: string; value: any } }. This way, on load, you can access label for the value without necessarily reloading these options
If true, calls to configureComponent for this prop support receiving a query parameter to filter remote options
If true, after setting a value for this prop, a call to reloadComponentProps is required as the component has dynamic configurable props dependent on this one
If true, you must save the configured prop value as a "label-value" object which should look like: { __lv: { label: string; value: any } } because the execution needs to access the label
Whether the deployed component is active
The timestamp when the component was deployed (epoch milliseconds)
The timestamp when the component was last updated (epoch milliseconds)
The name of the deployed component
The name slug of the deployed component
The discriminator field
DeployedComponent The component key (name) that was deployed
Callback observations for the deployed component
Was this page helpful?