curl 'https://api.pipedream.com/v1/orgs/o_abc123/sources' \
-H 'Authorization: Bearer <token>'
{
"page_info": {
"total_count": 19,
"count": 10,
"start_cursor": "ZGNfSzB1QWVl",
"end_cursor": "ZGNfeUx1alJx"
},
"data": [
{
"id": "dc_abc123",
"component_id": "sc_def456",
"configured_props": {
"http": {
"endpoint_url": "https://myendpoint.m.pipedream.net"
}
},
"active": true,
"created_at": 1587679599,
"updated_at": 1587764467,
"name": "test",
"name_slug": "test"
}
]
}
curl 'https://api.pipedream.com/v1/orgs/o_abc123/sources' \
-H 'Authorization: Bearer <token>'
{
"page_info": {
"total_count": 19,
"count": 10,
"start_cursor": "ZGNfSzB1QWVl",
"end_cursor": "ZGNfeUx1alJx"
},
"data": [
{
"id": "dc_abc123",
"component_id": "sc_def456",
"configured_props": {
"http": {
"endpoint_url": "https://myendpoint.m.pipedream.net"
}
},
"active": true,
"created_at": 1587679599,
"updated_at": 1587764467,
"name": "test",
"name_slug": "test"
}
]
}
Retrieve all the event sources configured for a specific workspace.
GET /orgs/<org_id>/sources
curl 'https://api.pipedream.com/v1/orgs/o_abc123/sources' \
-H 'Authorization: Bearer <token>'
{
"page_info": {
"total_count": 19,
"count": 10,
"start_cursor": "ZGNfSzB1QWVl",
"end_cursor": "ZGNfeUx1alJx"
},
"data": [
{
"id": "dc_abc123",
"component_id": "sc_def456",
"configured_props": {
"http": {
"endpoint_url": "https://myendpoint.m.pipedream.net"
}
},
"active": true,
"created_at": 1587679599,
"updated_at": 1587764467,
"name": "test",
"name_slug": "test"
}
]
}
Was this page helpful?