GET
/
v1
/
connect
/
{project_id}
/
deployed-triggers
/
{trigger_id}
/
events
cURL
curl --request GET \
  --url https://api.pipedream.com/v1/connect/{project_id}/deployed-triggers/{trigger_id}/events \
  --header 'Authorization: Bearer <token>' \
  --header 'x-pd-environment: <x-pd-environment>'
{
  "data": [
    {
      "e": {},
      "k": "<string>",
      "ts": 123,
      "id": "<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_'.

trigger_id
string
required

Query Parameters

external_user_id
string
required

Your end user ID, for whom you deployed the trigger

n
integer

The number of events to retrieve (defaults to 20 if not provided)

Response

200 - application/json

trigger events retrieved

Response received when retrieving trigger events