The Account object

An account represents a Gorgias helpdesk. It contains metadata and account-wide settings.

Account properties

ISO 8601 datetime

When the account was created.

ISO 8601 datetime

When the account was deactivated.

string

Gorgias domain of the account.

array

Account-wide settings. E.g: business hours, satisfaction survey, etc...

object

The status of the account whether it is active or not and the reason.

Account example object

{
  "created_datetime": "2017-11-23T15:59:41.966927",
  "deactivated_datetime": null,
  "domain": "company_name",
  "settings": [
    {
      "id": 987,
      "type": "business-hours",
      "data": {
        "timezone": "UTC",
        "business_hours": {
          "days": "1,2,3,4,5",
          "from_time": "09:00",
          "to_time": "22:00"
        }
      }
    }
  ],
  "status": {
    "status": "active"
  }
}