Checkio API
put/{tenantId}/v1/logo

Update tenant logo

Requires Authentication
Tenant

Uploads or replaces the tenant logo.

The image will be automatically resized to a maximum of 512x512 pixels while preserving

aspect ratio, and converted to PNG format.

Path Parameters

NameTypeDescription
tenantId
required
string (uuid)Tenant UUID

Request Body

required
multipart/form-data
logo
string (binary)
required
- The logo image file to upload (max 10MB, supported formats: PNG, JPEG)

Responses

Logo updated successfully

Code Examples

curl -X PUT 'https://api-next.checkio.co.uk/{tenantId}/v1/logo' \
  -H 'Authorization: Bearer {token}' \
  -H 'Content-Type: multipart/form-data' \
  -F 'logo=@/path/to/file'