curl --request GET \
--url https://api.pipedream.com/v1/connect/projects \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"app_name": "<string>",
"support_email": "[email protected]",
"connect_require_key_auth_test": true
}
],
"page_info": {
"count": 123,
"total_count": 123,
"start_cursor": "<string>",
"end_cursor": "<string>"
}
}List the projects that are available to the authenticated Connect client
curl --request GET \
--url https://api.pipedream.com/v1/connect/projects \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"app_name": "<string>",
"support_email": "[email protected]",
"connect_require_key_auth_test": true
}
],
"page_info": {
"count": 123,
"total_count": 123,
"start_cursor": "<string>",
"end_cursor": "<string>"
}
}The access token received from the authorization server in the OAuth 2.0 flow.
The cursor to start from for pagination
The cursor to end before for pagination
The maximum number of results to return
A search query to filter the projects
Was this page helpful?