v1

latestOpenAPI 3.0.3RingCentral API License Agreement2026-08-064871,2921.5 MB
Business Hours

Update Company Business Hours

Updates the company business hours schedule.

put/restapi/v1.0/account/{accountId}/business-hours

Path parameters

accountIdstring required

Internal identifier of the RingCentral account (can be set to "~" to indicate that the account associated with current authorization session should be used)

Request body

Example request

{
  "schedule": {
    "weeklyRanges": {
      "tuesday": [
        {
          "from": "09:00",
          "to": "18:00"
        }
      ],
      "friday": [
        {
          "from": "09:00",
          "to": "18:00"
        }
      ],
      "thursday": [
        {
          "from": "09:00",
          "to": "18:00"
        }
      ],
      "wednesday": [
        {
          "from": "09:00",
          "to": "18:00"
        }
      ],
      "monday": [
        {
          "from": "09:00",
          "to": "18:00"
        }
      ]
    }
  }
}

Response

OK

uristring uri

Canonical URI of a business-hours resource

Example response

{
  "uri": "https://platform.ringcentral.com/restapi/v1.0/account/401800045008/business-hours",
  "schedule": {
    "weeklyRanges": {
      "wednesday": [
        {
          "from": "09:00",
          "to": "18:00"
        }
      ],
      "friday": [
        {
          "from": "09:00",
          "to": "18:00"
        }
      ],
      "tuesday": [
        {
          "from": "09:00",
          "to": "18:00"
        }
      ],
      "monday": [
        {
          "from": "09:00",
          "to": "18:00"
        }
      ],
      "thursday": [
        {
          "from": "09:00",
          "to": "18:00"
        }
      ]
    }
  }
}