Get schedulable employees

GET /schedulable/employees

Get schedulable employees with filtering

Headers

Query parameters

  • employee-id array[string]

    Employee ID(s) to be considered for filtering

    At least 1 element. Minimum length of each is 1.

  • Employee external ID(s) to be considered for filtering

    At least 1 element. Minimum length of each is 1, maximum length of each is 255.

  • Lead segment ID to be considered for filtering

    Minimum length is 1.

  • Lead segment code to be considered for filtering

    Minimum length is 1, maximum length is 255.

  • Listing ID to be considered for filtering

    Minimum length is 1.

  • Listing external ID to be considered for filtering

    Minimum length is 1, maximum length is 255.

  • location object
    Hide location attributes Show location attributes
  • meeting-type array[string]

    Meeting type(s) to be considered for filtering

    Values are OFFICE, ON_LOCATION, PHONE, or VIDEO.

  • office-id array[string]

    Office ID(s) to be considered for filtering

    At least 1 element. Minimum length of each is 1.

  • office-external-id array[string]

    Office external ID(s) to be considered for filtering

    At least 1 element. Minimum length of each is 1, maximum length of each is 255.

  • Hide order-by-distance-to attributes Show order-by-distance-to attributes
  • subject-id array[string]

    Subject ID(s) to be considered for filtering

    At least 1 element. Minimum length of each is 1.

  • subject-external-id array[string]

    Subject external ID(s) to be considered for filtering

    At least 1 element. Minimum length of each is 1, maximum length of each is 255.

  • subject-group-id array[string]

    Subject group ID(s) to be considered for filtering

    At least 1 element. Minimum length of each is 1.

  • Subject group external ID(s) to be considered for filtering

    At least 1 element. Minimum length of each is 1, maximum length of each is 255.

Responses

GET /schedulable/employees
curl \
 -X GET https://api.pexipengage.com/enterprises/acme/schedulable/employees \
 -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c" \
 -H "X-Correlation-Id: a4f0048e-c983-11ed-afa1-0242ac120002" \
 -H "Accept-Language: en *"
Response examples (200)
{
  "data": [
    {
      "id": "123",
      "function": {
        "language": "en",
        "value": "Lorem ipsum"
      },
      "communicationEmail": "john.doe@pexip.com",
      "externalId": "ABCD1234",
      "firstName": "John",
      "lastName": "Doe",
      "language": "da",
      "phoneNumber": "+32412345678",
      "profilePictureUrl": "https://wwww.example.net/abc123"
    }
  ]
}