Organization
Upload organization logo
Upload a new logo for your organization.
File requirements:
- Formats: JPEG, PNG, GIF, WebP
- Max size: 5 MB
- Recommended: Square image, at least 200x200 pixels
How to upload:
Send a multipart/form-data request with the file in a field named logo.
Example (curl):
curl -X POST \
-H "Authorization: Bearer YOUR_TOKEN" \
-F "logo=@/path/to/logo.png" \
https://api.hyperprop.com/platform/v1/organization/profile/logo
Example (JavaScript):
const formData = new FormData();
formData.append('logo', fileInput.files[0]);
fetch('/platform/v1/organization/profile/logo', {
method: 'POST',
headers: { 'Authorization': 'Bearer ' + token },
body: formData
});
What happens:
- Old logo is deleted (if exists)
- New logo is uploaded to storage
- Organization profile is updated with new URL
- New logo URL is returned
Permissions: Only organization admins can upload logos.
POST
Upload organization logo
Related topics
Delete organization logoUpload user avatarUpdate your organization profileUpload community imageGet your organization profile