put
/{tenantId}/v1/logoUpdate 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
| Name | Type | Description |
|---|---|---|
tenantIdrequired | string (uuid) | Tenant UUID |
Request Body
required
multipart/form-data
logostring (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'