cURL
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>'import { PipedreamClient } from "@pipedream/sdk";
const client = new PipedreamClient({
clientId: "YOUR_CLIENT_ID",
clientSecret: "YOUR_CLIENT_SECRET",
projectEnvironment: "YOUR_PROJECT_ENVIRONMENT",
projectId: "YOUR_PROJECT_ID"
});
await client.deployedTriggers.retrieve("trigger_id", {
externalUserId: "external_user_id"
});from pipedream import Pipedream
client = Pipedream(
project_id="YOUR_PROJECT_ID",
client_id="YOUR_CLIENT_ID",
client_secret="YOUR_CLIENT_SECRET",
)
client.deployed_triggers.retrieve(
trigger_id="trigger_id",
external_user_id="external_user_id",
)package com.example.usage;
import com.pipedream.api.BaseClient;
import com.pipedream.api.resources.deployedtriggers.requests.DeployedTriggersRetrieveRequest;
public class Example {
public static void main(String[] args) {
BaseClient client = BaseClient.withCredentials("<clientId>", "<clientSecret>")
.projectId("YOUR_PROJECT_ID")
.build()
;
client.deployedTriggers().retrieve(
"trigger_id",
DeployedTriggersRetrieveRequest
.builder()
.externalUserId("external_user_id")
.build()
);
}
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.pipedream.com/v1/connect/{project_id}/deployed-triggers/{trigger_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-pd-environment", "<x-pd-environment>")
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": {
"id": "<string>",
"owner_id": "<string>",
"component_id": "<string>",
"configurable_props": [
{
"name": "<string>",
"type": "alert",
"content": "<string>",
"label": "<string>",
"description": "<string>",
"optional": true,
"disabled": true,
"readOnly": 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>",
"emit_on_deploy": true,
"webhook_signing_key": "<string>"
}
}{
"error": "Throttled"
}Get deployed trigger
Get details of a specific deployed trigger by its ID
GET
/
v1
/
connect
/
{project_id}
/
deployed-triggers
/
{trigger_id}
cURL
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>'import { PipedreamClient } from "@pipedream/sdk";
const client = new PipedreamClient({
clientId: "YOUR_CLIENT_ID",
clientSecret: "YOUR_CLIENT_SECRET",
projectEnvironment: "YOUR_PROJECT_ENVIRONMENT",
projectId: "YOUR_PROJECT_ID"
});
await client.deployedTriggers.retrieve("trigger_id", {
externalUserId: "external_user_id"
});from pipedream import Pipedream
client = Pipedream(
project_id="YOUR_PROJECT_ID",
client_id="YOUR_CLIENT_ID",
client_secret="YOUR_CLIENT_SECRET",
)
client.deployed_triggers.retrieve(
trigger_id="trigger_id",
external_user_id="external_user_id",
)package com.example.usage;
import com.pipedream.api.BaseClient;
import com.pipedream.api.resources.deployedtriggers.requests.DeployedTriggersRetrieveRequest;
public class Example {
public static void main(String[] args) {
BaseClient client = BaseClient.withCredentials("<clientId>", "<clientSecret>")
.projectId("YOUR_PROJECT_ID")
.build()
;
client.deployedTriggers().retrieve(
"trigger_id",
DeployedTriggersRetrieveRequest
.builder()
.externalUserId("external_user_id")
.build()
);
}
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.pipedream.com/v1/connect/{project_id}/deployed-triggers/{trigger_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-pd-environment", "<x-pd-environment>")
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": {
"id": "<string>",
"owner_id": "<string>",
"component_id": "<string>",
"configurable_props": [
{
"name": "<string>",
"type": "alert",
"content": "<string>",
"label": "<string>",
"description": "<string>",
"optional": true,
"disabled": true,
"readOnly": 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>",
"emit_on_deploy": true,
"webhook_signing_key": "<string>"
}
}{
"error": "Throttled"
}Authorizations
ConnectTokenOAuth2
A short-lived Connect token for client-side requests on behalf of an end user. Generate one via the Create Connect token endpoint.
Headers
The environment in which the server client is running
Available options:
development, production Path Parameters
The project ID, which starts with proj_.
Pattern:
^proj_[a-zA-Z0-9]+$Query Parameters
Your end user ID, for whom you deployed the trigger
Response
deployed trigger retrieved
Response received when retrieving a deployed trigger
A component/interface that emits events
- Option 1
- Option 2
- Option 3
Show child attributes
Show child attributes
Was this page helpful?
⌘I