Skip to main content
PUT
/
prontuario
/
{prontuario_id}
Update Medical Record
curl --request PUT \
  --url https://api.example.com/prontuario/{prontuario_id}
This endpoint is not currently implemented in the VidaPlus API. The medical record system uses a read-only approach where records are created but not directly updated. Instead, you should add consultations, prescriptions, and exams to the medical record using their respective endpoints.

Alternative Approach

To update the contents of a medical record, use the following endpoints:

Add Consultation

Use the Create Consultation endpoint to add a new consultation to the medical record.

Add Prescription

Use the Create Prescription endpoint to add a new prescription to the medical record.

Add Exam

Use the Create Exam endpoint to add a new exam to the medical record.

Path Parameters

prontuario_id
integer
required
The unique identifier of the medical record

Notes

  • Medical records are designed to be immutable containers
  • The paciente_id cannot be changed after creation
  • To modify the medical record contents, add or update the associated consultations, prescriptions, and exams
  • Only superusers can create medical records, but healthcare professionals can add consultations, prescriptions, and exams to existing records

Build docs developers (and LLMs) love