Skip to main content
POST
/
v1
/
connect
/
projects
/
{project_id}
/
logo
cURL
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..."
}
'
{}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

project_id
string
required

The project ID, which starts with proj_.

Body

application/json

Payload to update a project's logo.

Data URI containing the new Base64 encoded image

Example:

"data:image/png;base64,AAAAAA..."

Response

logo updated