Get and update automation settings for your account

Retrieve your current automation settings, such as notifications and default service settings. This endpoint also returns a 'requestId' that may be needed for subsequent calls, for example, when updating settings.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/account/automation
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/account/automation" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "settings": {
      "DefaultTimezone": "string",
      "SupportDepartments": [
        "string"
      ],
      "SupportRates": [
        "string"
      ],
      "DiscountForms": [
        "string"
      ]
    },
    "settings_enabled": {
      "DefaultTimezone": true,
      "MergeInvoiceOptions": true
    }
  }
}