Skip to main content
POST
/
files
/
logo
Upload organization logo
curl --request POST \
  --url https://nimbussuite.com/api/v1/files/logo \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file' \
  --form 'orgId=<string>' \
  --form 'uuid=<string>'
{
  "url": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data
file
file
required

Logo file (max 5MB)

orgId
string
required
uuid
string
required

Response

Logo uploaded successfully

url
string