---
title: "Replace education and training records for a practitioner"
method: PUT
path: "/practitioners/{id}/education-training"
tags: ["Practitioner"]
---

# Replace education and training records for a practitioner

`PUT /practitioners/{id}/education-training`

Replaces the practitioner's education and training records using per-item create, update, or delete actions. Submitting an empty array removes all education and training entries for this practitioner — this is a destructive, full-array replacement that cannot be partially reversed in the same call. Use this to synchronize a practitioner's education history, such as medical schools, residencies, and fellowships, with the authoritative source; for targeted removal of a single entry, send an explicit `delete` action with the stable row ID rather than submitting an empty array. `{id}` is the `certifyPractitionerId`, each item in the array must include an `action` field, and stable row IDs are required for `update` and `delete` actions.

## Path parameters

- `id` string, required

## Headers

- `tenant-id` string

## Request body

- EducationTrainingUpdateRequest1[]
  - `id` string — Stable row identifier (UUID)
  - `type` string — Education or training type
  - `institution` string — Institution name
  - `degree` string — Degree or program
  - `specialty` string — Medical specialty (stored as speciality in Core schema)
  - `subspecialty` string — Subspecialty
  - `startDate` string, date
  - `endDate` string, date
  - `source` string — Source of the record (e.g. Manual, Roster)
  - `status` string — Completion status when applicable
  - `action` string — Action to perform: create, update, or delete

## Response `200`

Practitioner education and training updated successfully

## Other responses

- `400` — Bad request - Invalid input
- `401` — Unauthorized - Authentication required
- `403` — Forbidden - Insufficient permissions
- `404` — Practitioner not found
- `500` — Internal server error

---

[API](https://skmtc.net/certifyos/apis/certify-api-layer.md) · [All operations](https://skmtc.net/certifyos/apis/certify-api-layer/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/certifyos/certify-api-layer/revisions/563848e0ecc0/schema)
