Skip to main content
GET
/
v1
/
connect
/
{project_id}
/
actions
cURL
curl --request GET \  --url https://api.pipedream.com/v1/connect/{project_id}/actions \  --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>"  } }

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

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_'.

Query Parameters

after
string

The cursor to start from for pagination

before
string

The cursor to end before for pagination

limit
integer

The maximum number of results to return

q
string

A search query to filter the actions

app
string

The ID or name slug of the app to filter the actions

Response

actions listed

Response received when retrieving a list of components

data
object[]
required
page_info
object
required
⌘I