curl --request GET \
--url https://api.pipedream.com/v1/connect/{project_id}/actions/{component_id} \
--header 'Authorization: Bearer <token>' \
--header 'x-pd-environment: <x-pd-environment>'{
"data": {
"key": "<string>",
"name": "<string>",
"version": "<string>",
"configurable_props": [
{
"name": "<string>",
"type": "alert",
"content": "<string>",
"label": "<string>",
"description": "<string>",
"optional": true,
"disabled": true,
"hidden": true,
"remoteOptions": true,
"useQuery": true,
"reloadProps": true,
"withLabel": true,
"alertType": "info"
}
],
"description": "<string>",
"component_type": "<string>",
"stash": "optional",
"annotations": {
"destructiveHint": true,
"idempotentHint": true,
"openWorldHint": true,
"readOnlyHint": true,
"title": "<string>"
}
}
}Get detailed configuration for a specific action by its key
curl --request GET \
--url https://api.pipedream.com/v1/connect/{project_id}/actions/{component_id} \
--header 'Authorization: Bearer <token>' \
--header 'x-pd-environment: <x-pd-environment>'{
"data": {
"key": "<string>",
"name": "<string>",
"version": "<string>",
"configurable_props": [
{
"name": "<string>",
"type": "alert",
"content": "<string>",
"label": "<string>",
"description": "<string>",
"optional": true,
"disabled": true,
"hidden": true,
"remoteOptions": true,
"useQuery": true,
"reloadProps": true,
"withLabel": true,
"alertType": "info"
}
],
"description": "<string>",
"component_type": "<string>",
"stash": "optional",
"annotations": {
"destructiveHint": true,
"idempotentHint": true,
"openWorldHint": true,
"readOnlyHint": true,
"title": "<string>"
}
}
}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
development, production The key that uniquely identifies the component (e.g., 'slack-send-message')
The project ID, which starts with proj_.
Optional semantic version of the component to retrieve (for example '1.0.0')
action retrieved
Response received when retrieving a specific component
Show child attributes
Was this page helpful?