GET
/
v1
/
connect
/
{project_id}
/
actions
/
{component_id}
cURL
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": "<string>",
        "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"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-pd-environment
enum<string>
required

The environment in which the server client is running

Available options:
development,
production

Path Parameters

project_id
string
required

The project ID, which starts with 'proj_'.

component_id
string
required

The key that uniquely identifies the component (e.g., 'slack-send-message')

Response

200 - application/json

action retrieved

Response received when retrieving a specific component