On-Premises API was officially sunset on October 23, 2025 and is no longer available. Please use Cloud API instead.
/v1/settings/business/profile
Use the /v1/settings/business/profile endpoint to configure the following business profile settings: business address, business description, email for business contact, business industry, and business website.
admin account to access the business profile settings.Make a GET API call to retrieve your business profile settings.
GET /v1/settings/business/profile
A successful response includes the profile object containing the business profile data. For more description of the data, see the Parameters list below.
{
"settings": {
"business": {
"profile": {
"address": "new-business-address",
"description": "business-description",
"email": "new-business-email",
"vertical": "business-industry",
"websites": [ "website-1", "website-2" ]
}
}
}
If you encounter any errors, see Error and Status Messages.
Make a POST API call to update your business profile settings.
POST /v1/settings/business/profile
{
"address": "your-business-address",
"description": "your-business-description",
"email": "your-business-email",
"vertical": "your-business-industry",
"websites": [ "your-website-1", "your-website-2" ]
}
| Name | Description |
|---|---|
type: String | Address of the business. Maximum of 256 characters. |
type: String | Description of the business. Maximum of 512 characters. |
type: String | Email address (in valid email format) to contact the business. Maximum of 128 characters. |
type: String | Industry of the business. Must be one of these accepted values:
The business vertical cannot be set back to an empty value after it is created. |
type: Array of strings | URLs (including |
If you only need to update a couple of fields with new information, you can make a request which changes only the necessary fields:
POST /v1/settings/business/profile
{
"address": "new-business-address",
"email": "new-business-email"
}
A successful request returns the HTTP Status Code 200 OK and either null or {}. If you encounter any errors, see Error and Status Messages.