latestOpenAPI 3.1.02026-08-194237902.5 MB

563848e0ecc0

Practitioner

Manage board certifications for a practitioner

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.

put/practitioners/{id}/board-certifications

Path parameters

idstring required

Practitioner ID

Headers

tenant-idstring

Request body

certificateIdstring

Unique identifier for the board certification

certificateTypestring

Type of board certification

durationTypestring

Duration type of the certification

expireDatestring date
issueDatestring date
reverificationDatestring date
specialitystring

Medical specialty

subspecialitystring

Medical subspecialty

verifiedBystring

Person who verified the board certification

verifiedDatestring date
mocstring

Maintenance of Certification status

statusstring

Status of the board certification

occuranceTypestring

Occurrence type of the certification

recordTypestring

Type of record

actionstring

Action to perform on this board certification (create, update, delete)

Example request

[
  {
    "certificateId": "BC123456",
    "certificateType": "Internal Medicine",
    "durationType": "10 years",
    "speciality": "Cardiology",
    "subspeciality": "Interventional Cardiology",
    "verifiedBy": "John Smith",
    "moc": "Current",
    "status": "Active",
    "occuranceType": "Initial",
    "recordType": "Board Certification",
    "action": "create"
  }
]

Response

Practitioner board certifications updated successfully