- 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
Create Appointment Resource
Testing
Testing Env
Testing Env
POST
/emr/appointment
emr
Request
Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Body Params application/json
status
enum<string>
required
Allowed values:
proposedpendingbookedarrivedfulfilledcancellednoshowentered-in-errorchecked-inwaitlist
participant
array [object {5}]
required
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": "waitlist",
"participant": [
{
"type": "Emergency",
"actor": {
"type": "patient",
"id": "364bf61f-d0ac-3b9a-d91c-dbc2d9d9f46f"
},
"required": false,
"status": "declined",
"period": {
"start": "2025-01-03",
"end": "2025-01-08"
}
}
],
"reason_reference": [],
"reason_code": [
{
"code": "122003",
"name": "Choroidal hemorrhage"
},
{
"code": "409002",
"name": "Food allergy diet"
}
],
"description": "Lorem ipsum...",
"start": "2025-02-07T13:28:17.239+02:00",
"end": "2025-02-07T17:30:17.239+02:00",
"minutes_duration": 30,
"slot": [],
"comment": "id ex",
"patient_instruction": "esse ad elit qui",
"based_on": [],
"requested_period": [
{
"start": "2025-01-02",
"end": "2025-01-10"
},
{
"start": "2025-01-20",
"end": "2025-01-30"
}
]
}
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 POST 'https://staging.onyeone.com/api/emr/appointment' \
--header 'Content-Type: application/json' \
--data-raw '{
"status": "waitlist",
"participant": [
{
"type": "Emergency",
"actor": {
"type": "patient",
"id": "364bf61f-d0ac-3b9a-d91c-dbc2d9d9f46f"
},
"required": false,
"status": "declined",
"period": {
"start": "2025-01-03",
"end": "2025-01-08"
}
}
],
"reason_reference": [],
"reason_code": [
{
"code": "122003",
"name": "Choroidal hemorrhage"
},
{
"code": "409002",
"name": "Food allergy diet"
}
],
"description": "Lorem ipsum...",
"start": "2025-02-07T13:28:17.239+02:00",
"end": "2025-02-07T17:30:17.239+02:00",
"minutes_duration": 30,
"slot": [],
"comment": "id ex",
"patient_instruction": "esse ad elit qui",
"based_on": [],
"requested_period": [
{
"start": "2025-01-02",
"end": "2025-01-10"
},
{
"start": "2025-01-20",
"end": "2025-01-30"
}
]
}'
Responses
🟢200Success
application/json
Body
message
string
required
resource_name
string
required
resource_id
string
required
full_resource
object
required
resourceType
string
required
id
string
required
meta
object
required
status
string
required
reasonCode
array [object {2}]
optional
description
string
optional
start
string
optional
end
string
optional
minutesDuration
integer
optional
comment
string
optional
patientInstruction
string
optional
participant
array [object {4}]
optional
requestedPeriod
array [object {2}]
optional
Example
{
"message": "Resource created successfully",
"resource_name": "Appointment",
"resource_id": "339d4678-8482-5d81-b000-346edfd86484",
"full_resource": {
"resourceType": "Appointment",
"id": "339d4678-8482-5d81-b000-346edfd86484",
"meta": {
"versionId": "1",
"lastUpdated": "2024-12-30T10:18:02.887+00:00",
"source": "#iQanb40TgsOn9K5M",
"tag": [
{
"system": "http://onyeone.com/facility-tags/origination",
"code": "1",
"display": "Green Group Hospital"
}
]
},
"status": "waitlist",
"reasonCode": [
{
"coding": [
{
"system": "http://hl7.org/fhir/ValueSet/encounter-reason",
"code": "122003",
"display": "Choroidal hemorrhage"
}
],
"text": "Choroidal hemorrhage"
},
{
"coding": [
{
"system": "http://hl7.org/fhir/ValueSet/encounter-reason",
"code": "409002",
"display": "Food allergy diet"
}
],
"text": "Food allergy diet"
}
],
"description": "Lorem ipsum...",
"start": "2025-02-07T13:28:17.239+02:00",
"end": "2025-02-07T17:30:17.239+02:00",
"minutesDuration": 30,
"comment": "id ex",
"patientInstruction": "esse ad elit qui",
"participant": [
{
"type": [
{
"coding": [
{
"system": "http://hl7.org/fhir/participant-type",
"code": "emergency",
"display": "Emergency"
}
],
"text": "Emergency"
}
],
"actor": {
"reference": "Patient/364bf61f-d0ac-3b9a-d91c-dbc2d9d9f46f"
},
"status": "declined",
"period": {
"start": "2025-01-03",
"end": "2025-01-08"
}
}
],
"requestedPeriod": [
{
"start": "2025-01-02",
"end": "2025-01-10"
},
{
"start": "2025-01-20",
"end": "2025-01-30"
}
]
}
}
Modified at 2024-12-30 10:19:44