Skip to main content
PATCH
/
api
/
2.0
/
patient_form_requests
/
{id}
/
Partially Update Patient Form Request
curl --request PATCH \
  --url https://sandbox.elationemr.com/api/2.0/patient_form_requests/{id}/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "appointment": 123,
  "notification_date": "2023-12-25",
  "patient": 123,
  "patient_forms": [
    123
  ]
}
'
{
  "patient": 123,
  "patient_forms": [
    123
  ],
  "appointment": 123,
  "created_date": "2023-11-07T05:31:56Z",
  "forms_url": "<string>",
  "id": 123,
  "notification_date": "2023-12-25",
  "practice": 123
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
integer<int64>
required

Body

application/json
appointment
integer<int64> | null

The ID of an appointment to associate with this form request. When the appointment is in the past, the notification_date validation is skipped.

notification_date
string<date>

This is the date that the request will appear in the Practice's action queue. Must be in the future unless an appointment in the past is provided. Defaults to one week from today.

patient
integer<int64>

The ID of the patient that should be associated with the request.

patient_forms
integer[]

The IDs of the forms that should be associated to the request. Please note that you must create these forms before trying to create a request.

Response

200 - application/json
patient
integer<int64>
required

The ID of the patient that should be associated with the request.

patient_forms
integer[]
required

The IDs of the forms that should be associated to the request. Please note that you must create these forms before trying to create a request.

appointment
integer<int64> | null

The ID of an appointment to associate with this form request. When the appointment is in the past, the notification_date validation is skipped.

created_date
string<date-time> | null
read-only
forms_url
string<uri>
read-only
id
integer
read-only
notification_date
string<date>

This is the date that the request will appear in the Practice's action queue. Must be in the future unless an appointment in the past is provided. Defaults to one week from today.

practice
integer
read-only