curl --request POST \
--url https://api.pipedream.com/v1/connect/projects/{project_id}/logo \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"logo": "data:image/png;base64,AAAAAA..."
}
'{
"error": "Throttled"
}Upload or replace the project logo
curl --request POST \
--url https://api.pipedream.com/v1/connect/projects/{project_id}/logo \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"logo": "data:image/png;base64,AAAAAA..."
}
'{
"error": "Throttled"
}The access token received from the authorization server in the OAuth 2.0 flow.
The project ID, which starts with proj_.
Payload to update a project's logo.
Data URI containing the new Base64 encoded image
"data:image/png;base64,AAAAAA..."
logo updated
Was this page helpful?