curl --request GET \
--url https://api.pipedream.com/v1/connect/{project_id}/projects/info \
--header 'Authorization: Bearer <token>' \
--header 'x-pd-environment: <x-pd-environment>'{
"apps": [
{
"id": "<string>",
"name_slug": "<string>"
}
]
}Retrieve project configuration and environment details
curl --request GET \
--url https://api.pipedream.com/v1/connect/{project_id}/projects/info \
--header 'Authorization: Bearer <token>' \
--header 'x-pd-environment: <x-pd-environment>'{
"apps": [
{
"id": "<string>",
"name_slug": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The access token received from the authorization server in the OAuth 2.0 flow.
The environment in which the server client is running
development, production The project ID, which starts with proj_.
project info retrieved
Response received when retrieving project info
Show child attributes
Was this page helpful?