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..."
}
'
{
  "error": "Throttled"
}

Authorizations

Authorization
string
header
required

A short-lived OAuth access token for server-side requests. Generate one via the Generate OAuth Token flow or automatically when initializing the SDK client.

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