Whitelabel
The Whitelabel API allows resellers to customize branding for their customers, including logos, colors, and domain names.
Base URL​
https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/whitelabel
Overview​
Whitelabel configuration enables resellers to provide a branded experience to their end customers. Customize portal appearance, email templates, and support information.
Endpoints​
| Method | Endpoint | Description |
|---|---|---|
| GET | /whitelabel | Get whitelabel settings |
| POST | /whitelabel | Update whitelabel settings |
| PUT | /whitelabel/logo | Upload logo |
| PUT | /whitelabel/icon | Upload icon |
| GET | /whitelabel/domains | List custom domains |
| PUT | /whitelabel/domains | Add custom domain |
Get Whitelabel Settings​
curl -X GET "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/whitelabel" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Accept: application/json"
Response​
{
"auth_token": "{AUTH_TOKEN}",
"data": {
"company_name": "Your Company",
"support_email": "support@example.com",
"support_phone": "+15551234567"
},
"request_id": "{REQUEST_ID}",
"status": "success"
}
Documentation In Progress
This documentation is being expanded. Check back soon for complete API reference.