Skip to main content
GET
/
organizations
/
{orgId}
/
office-hours
List office hours
curl --request GET \
  --url https://api.helloannie.com/v1/organizations/{orgId}/office-hours
{
  "success": true,
  "data": {
    "officeHours": [
      {
        "dayOfWeek": "MONDAY",
        "isClosed": true,
        "open": "<string>",
        "close": "<string>"
      }
    ]
  }
}

Path Parameters

orgId
string<uuid>
required

The ID of the organization

Query Parameters

dayOfWeek
enum<string>
Available options:
MONDAY,
TUESDAY,
WEDNESDAY,
THURSDAY,
FRIDAY,
SATURDAY,
SUNDAY

Response

Response returned when listing office hours for all days of the week

success
enum<boolean>
required
Available options:
true
data
object
required