Skip to main content

GET /trainees/{trainee_id}/placements

Get many placements for a trainee.

Request

GET /api/v2025.0-rc/trainees/{trainee_id}/placements

Parameters

Parameter In Type Required Description
trainee_id path string true The unique ID of the trainee

Possible responses

HTTP 200 - An array of placements
    {
      "data": [
        {
          "placement_id": "AXsRAS4LfwZZXvSX7aAfNUb4",
          "school_id": 26214,
          "urn": "123456",
          "name": "Meadow Creek School",
          "postcode": "AB1 2CD",
          "created_at": "2024-01-18T08:02:42.672Z",
          "updated_at": "2024-01-18T08:02:42.672Z"
        }
      ]
    }
    
HTTP 401 - Unauthorized
    {
      "error": "Unauthorized"
    }
    
HTTP 404 - Not found
    {
      "errors": [
        {
          "error": "NotFound",
          "message": "Trainee(s) not found"
        }
      ]
    }