Headers
- 
    
  Unique identifier to allow referencing a particular transaction or event chain Minimum length is 1.
Query parameters
- 
    
  Start date and time to be considered for filtering (ISO 8601) Minimum length is 1.
- 
    
  End date and time to be considered for filtering (ISO 8601) Minimum length is 1.
- 
    
  Employee ID(s) to be considered for filtering At least 1element. Minimum length of each is1.
- 
    
  Employee languages to be considered for filtering At least 1element. Values areda,de,el,en,es,fr,ja,nl,no, orpl.
- 
    
  Office ID to be considered for filtering Minimum length is 1.
- 
    
  Subject ID to be considered for filtering Minimum length is 1.
- 
    
  Meeting type to be considered for filtering Values are OFFICE,ON_LOCATION,PHONE, orVIDEO.
- 
    
  Lead segment ID to be considered for filtering Minimum length is 1.
- 
    
  Listing ID to be considered for filtering Minimum length is 1.
- 
    
  Additional properties are NOT allowed. 
curl \
 --request GET 'https://api.staging.pexipengage.com/enterprises/acme/timetable?from=2025-05-04T09%3A42%3A00Z&to=2025-05-04T09%3A42%3A00Z&office-id=123&subject-id=123&meeting-type=OFFICE' \
 --header "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c" \
 --header "X-Correlation-Id: a4f0048e-c983-11ed-afa1-0242ac120002"{
  "data": {
    "duration": 5,
    "earliestPossible": "2022-08-01T09:00:00.000Z",
    "latestPossible": "2022-09-01T17:00:00.000Z",
    "listing": {
      "id": "123"
    },
    "meetingType": "OFFICE",
    "office": {
      "id": "123"
    },
    "slots": [
      {
        "availableEmployees": [
          {
            "autoAccept": true,
            "employee": {
              "id": "123"
            }
          }
        ],
        "start": "2022-08-01T09:00:00.000Z",
        "end": "2022-08-01T10:00:00.000Z"
      }
    ],
    "subject": {
      "id": "123"
    },
    "trailingBufferTime": 5
  }
}{
  "errors": [
    {
      "message": "string",
      "code": "string",
      "type": "string",
      "statusCode": "string",
      "arguments": {}
    }
  ]
}