- Overview
- OnyeOne Use Cases
- Authentication
- Guides
- Core EHR/EMR FHIR R4 APIs
- Administration
- Patients
- Practitioners
- Locations
- Health Service
- Encounters
- Appointments
- Group
- Clinical
- Diagnostics
- Medications
- Financial
- Health Data Transformation
- Health Interoperabilty System
- Webhook
- Get Resource.GET
Update Appointment Resource
Testing
Testing Env
Testing Env
PUT
/emr/appointment/{appointment_id}
emr
Request
Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Path Params
appointment_id
string
required
Body Params application/json
status
enum<string>
optional
Allowed values:
proposedpendingbookedarrivedfulfilledcancellednoshowentered-in-errorchecked-inwaitlist
participant
array [object {5}]
optional
type
enum<string>
required
Allowed values:
admitterattendercallback contactconsultantdischargerescortreferrersecondary performerprimary performerParticipationTranslatorEmergency
actor
object
required
required
boolean
required
status
enum<string>
optional
Allowed values:
accepteddeclinedtentativeneeds-action
period
object
optional
reason_reference
array [object {2}]
optional
type
enum<string>
required
Allowed values:
conditionprocedureobservationimmunization_recommendation
id
string
required
reason_code
array [object {2}]
optional
code
string
required
name
string
required
cancellation_reason
enum<string>
optional
Allowed values:
patpat-crspat-decpat-ltpat-no-shwprovprov-persprov-techprov-zoomsysoth
description
string
optional
start
string
optional
end
string
optional
minutes_duration
number
optional
>= 0
slot
array[string]
optional
comment
string
optional
patient_instruction
string
optional
based_on
array[string]
optional
requested_period
array [object {2}]
optional
start
string
required
end
string
required
Example
{
"status": "fulfilled",
"description": "Examination",
"start": "2025-02-07T13:28:17.239+02:00",
"end": "2025-02-07T17:30:17.239+02:00",
"minutes_duration": 62
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://staging.onyeone.com/api/emr/appointment/' \
--header 'Content-Type: application/json' \
--data-raw '{
"status": "fulfilled",
"description": "Examination",
"start": "2025-02-07T13:28:17.239+02:00",
"end": "2025-02-07T17:30:17.239+02:00",
"minutes_duration": 62
}'
Responses
🟢200Success
application/json
Body
message
string
required
resource_id
string
required
updated_fields
object
required
status
string
optional
description
string
optional
start
string
optional
end
string
optional
minutesDuration
integer
optional
Example
{
"message": "Appointment resource updated successfully.",
"resource_id": "339d4678-8482-5d81-b000-346edfd86484",
"updated_fields": {
"status": "fulfilled",
"description": "Examination",
"start": "2025-02-07T13:28:17.239+02:00",
"end": "2025-02-07T17:30:17.239+02:00",
"minutesDuration": 62
}
}
Modified at 2024-12-30 10:36:05