---
title: "List client courses"
method: GET
path: "/api/business/{businessId}/clientcourse"
tags: ["Client Course"]
---

# List client courses

`GET /api/business/{businessId}/clientcourse`

Get a list of client courses for the specified business id. List can be filtered by branch id, client id and a possibility to include archived client courses or courses with no remaining units.

## Path parameters

- `businessId` string, required

## Query parameters

- `branch_id` string
- `client_id` string
- `includeArchived` boolean
- `includeUsedCourseItems` boolean

## Response `200`

Client courses listed

- DataPagedModelClientCourseResponse
  - `_embedded` object
    - `clientCourses` ClientCourseResponse[]
      - `clientCourseId` string
      - `archived` boolean
      - `purchaseDate` string
      - `expiryDate` string, date
      - `clientId` string
      - `purchasingBranchId` string
      - `courseId` string
      - `courseName` string
      - `grossPrice` number
      - `netPrice` number
      - `clientCourseItems` ClientCourseItem[]
        - `clientCourseItemId` string
        - `courseItemId` string
        - `serviceId` string
        - `initialUnits` integer
        - `remainingUnits` integer
        - `grossPrice` number
        - `netPrice` number
  - `page` PageMetadata
    - `size` integer
    - `totalElements` integer
    - `totalPages` integer
    - `number` integer

## Other responses

- `400` — Bad Request
- `404` — Business with the specified id doesn't exist
- `429` — Request rate limit exceeded. Current limit set to 100 rps.
- `500` — Internal Server Error

---

[API](https://skmtc.net/phorest/apis/third-party-api.md) · [All operations](https://skmtc.net/phorest/apis/third-party-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/phorest/third-party-api/revisions/2218bc90d39c/schema)
