Get schedulable subjects

GET /schedulable/subjects

Get schedulable subjects 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/subjects
curl \
 -X GET https://api.pexipengage.com/enterprises/acme/schedulable/subjects \
 -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",
      "name": {
        "language": "en",
        "value": "Lorem ipsum"
      },
      "description": {
        "language": "en",
        "value": "Lorem ipsum"
      },
      "instructions": {
        "language": "en",
        "value": "Lorem ipsum"
      },
      "externalId": "ABCD1234",
      "order": 5,
      "subjectGroup": {
        "id": "123",
        "color": "#89d0c1",
        "order": 5,
        "externalId": "ABCD1234",
        "image": "https://wwww.example.net/abc123",
        "name": {
          "language": "en",
          "value": "Lorem ipsum"
        }
      }
    }
  ]
}