---
title: "Manage board certifications for a practitioner"
method: PUT
path: "/practitioners/{id}/board-certifications"
tags: ["Practitioner"]
---

# Manage board certifications for a practitioner

`PUT /practitioners/{id}/board-certifications`

Updates, creates, or deletes board certification records for the specified practitioner; supply an array of certification items where each item includes an `action` field indicating the operation to perform (`create`, `update`, or `delete`). Use this to synchronize the complete set of board certifications for a practitioner — adding new certifications, modifying existing ones, or removing certifications that are no longer valid; operations are applied per-item based on the `action` field. `{id}` is the `certifyPractitionerId`. Submitting an empty array wholesale-clears the entire board-certifications section with no confirmation step — there is no null/empty guard on this endpoint.

## Path parameters

- `id` string, required

## Headers

- `tenant-id` string

## Request body

- BoardCertificationUpdateRequest1[]
  - `certificateId` string — Unique identifier for the board certification
  - `certificateType` string — Type of board certification
  - `durationType` string — Duration type of the certification
  - `expireDate` string, date
  - `issueDate` string, date
  - `reverificationDate` string, date
  - `speciality` string — Medical specialty
  - `subspeciality` string — Medical subspecialty
  - `verifiedBy` string — Person who verified the board certification
  - `verifiedDate` string, date
  - `moc` string — Maintenance of Certification status
  - `status` string — Status of the board certification
  - `occuranceType` string — Occurrence type of the certification
  - `recordType` string — Type of record
  - `action` string — Action to perform on this board certification (create, update, delete)

## Response `200`

Practitioner board certifications 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)
