API ProcNotes

See API Specification

ProcNotes POST

Version Added: 22.2

Creates a new note that is associated with a procedure. If the Procedure Note contains 50 or more consecutive blank lines, they will be removed. The new note will always replace the existing note. Every change is recorded with an archived note history, which can be viewed in the Chart Module under Show Tab > Audit.

PatNum: Required.
ProcNum: Required. ProcNum of the procedure.
Note: Required. The actual note. An empty string will clear the note.

Example Request:
POST /procnotes

{
"PatNum": 74,
"ProcNum": 868,
"Note": "Review med hx \nPt chief complaint: Bleeding, swelling \nDue Date: \"\"\nBP taken: BP: 118 / 72 Pulse: 83 \n Follow up"
}

Example Response:
{
"PatNum": 74,
"ProcNum": 868,
"Note": "Review med hx \nPt chief complaint: Bleeding, swelling \nDue Date: \"\"\nBP taken: BP: 118 / 72 Pulse: 83 \n Follow up "
}

201 Created
400 BadRequest (with explanation)
404 NotFound (with explanation)