---
title: "List individual coaching assignments with pagination"
method: GET
path: "/api/v1/individual-coaching-assignments"
tags: ["dashboard", "bff"]
---

# List individual coaching assignments with pagination

`GET /api/v1/individual-coaching-assignments`

## Query parameters

- `ids` string[], nullable
- `page` number
- `limit` number
- `order` object
  - `createdAt` 'ASC' | 'DESC'
  - `dueDate` 'ASC' | 'DESC'
  - `lastUpdatedAt` 'ASC' | 'DESC'
- `teamId` string, uuid
- `userIds` string[]
- `trackReferenceIds` string[]
- `dueDateAfter` string, date-time
- `dueDateBefore` string, date-time

## Response `201`

- IndividualCoachingAssignmentsFindResponseDTO
  - `data` object[], required
    - `assignedBy` object — Who assigned this track to the learner
      - `displayName` string — Display name of the assigning user, only present when kind is "user"
      - `kind` 'user' | 'system' | 'unknown', required — Origin of the assignment: "user" when a responsible user was resolved, "system" for system-generated allocations, "unknown" when the responsible user cannot be resolved
      - `userId` string — Id of the assigning user, only present when kind is "user"
    - `assignedDate` string, date-time, required — The date the track was assigned to the learner (ISO 8601).
    - `dueDate` string, date-time — The assignment due date (ISO 8601), when set. Absent for assignments with no due date.
    - `firstName` string, nullable
    - `id` string, required
    - `lastName` string, nullable
    - `state` 'notStarted' | 'started' | 'completed', required
    - `trackReferenceId` string, required
    - `trackTitle` string, required
    - `userId` string, required
    - `userPictureUrl` string, nullable
  - `meta` object, required
    - `hasNext` boolean, required
    - `limit` number, required
    - `page` number, required
    - `total` number, required

---

[API](https://skmtc.net/wejam/apis/jam.md) · [All operations](https://skmtc.net/wejam/apis/jam/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/wejam/jam/revisions/bd5a5f406bca/schema)
