curl --request GET \
--url https://sitegpt.ai/api/v0/w/brands/{brandId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "<string>",
"data": {
"brand": {
"id": "<string>",
"name": "<string>",
"domain": "<string>",
"marketingDomain": "<string>",
"supportEmail": "<string>",
"color": "<string>",
"terms": "<string>",
"privacyPolicy": "<string>",
"watermark": "<string>",
"ownedById": "<string>",
"logo": "<string>",
"fullLogo": "<string>",
"metaDetails": {
"title": "<string>",
"description": "<string>",
"ogImage": "<string>"
},
"emailSettings": {
"fromName": "<string>",
"fromEmail": "<string>",
"replyToEmail": "<string>",
"resendApiKey": "<string>"
},
"defaultQuota": {
"chatbotsQuota": 1,
"linksQuota": 1,
"filesQuota": 1,
"combinedMessagesQuota": 1,
"membersQuota": 1
},
"createdAt": "<string>",
"updatedAt": "<string>"
}
}
}Fetch the whitelabel brand
curl --request GET \
--url https://sitegpt.ai/api/v0/w/brands/{brandId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "<string>",
"data": {
"brand": {
"id": "<string>",
"name": "<string>",
"domain": "<string>",
"marketingDomain": "<string>",
"supportEmail": "<string>",
"color": "<string>",
"terms": "<string>",
"privacyPolicy": "<string>",
"watermark": "<string>",
"ownedById": "<string>",
"logo": "<string>",
"fullLogo": "<string>",
"metaDetails": {
"title": "<string>",
"description": "<string>",
"ogImage": "<string>"
},
"emailSettings": {
"fromName": "<string>",
"fromEmail": "<string>",
"replyToEmail": "<string>",
"resendApiKey": "<string>"
},
"defaultQuota": {
"chatbotsQuota": 1,
"linksQuota": 1,
"filesQuota": 1,
"combinedMessagesQuota": 1,
"membersQuota": 1
},
"createdAt": "<string>",
"updatedAt": "<string>"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Id of the whitelabel brand
OK
Indicates whether this is success response or error response
Overall message regarding the operation performed
Data returned from the server
Show child attributes
Details of the whitelabel brand
Show child attributes
Id of the whitelabel brand
Name of the whitelabel brand
Domain of the whitelabel brand
Marketing domain of the whitelabel brand
Support email of the whitelabel brand
Color of the whitelabel brand
Terms and conditions of the whitelabel brand
Privacy policy of the whitelabel brand
Owner id of the whitelabel brand
Logo of the whitelabel brand
Full logo of the whitelabel brand
Email settings of the whitelabel brand
Show child attributes
From name of email config of the whitelabel brand
From email of email config of the whitelabel brand
Reply-to email of email config of the whitelabel brand email config
Resend API key of email config of the whitelabel brand
Default quota of the brand
Show child attributes
Default chatbots quota for the new users
x >= 0Default links quota for the new users
x >= 0Default files quota for the new users
x >= 0Default messages quota for the new users
x >= 0Default members quota for the new users
x >= 0Timestamp at which the brand has been created
Timestamp at which the brand has been recently updated
Was this page helpful?