- 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 PractitionerRole Resource
Testing Env
Testing Env
PUT
/emr/practitionerrole/{practitionerrole_id}
Request
Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Path Params
practitionerrole_id
string
required
Body Params application/json
roles
array [object {2}]
optional
code
string
optional
name
string
optional
active
boolean
optional
period
object
optional
start
string
optional
end
string
optional
specialties
array [object {2}]
optional
code
string
optional
name
string
optional
available_times
array [object {4}]
optional
days_of_week
array[string]
optional
Allowed values:
montuewedthurfrisatsun
all_day
boolean
optional
start_time
string
optional
end_time
string
optional
not_available_times
array [object {3}]
optional
description
string
optional
start_date
string
optional
end_date
string
optional
Example
{
"roles": [
{
"code": "doctor",
"name": "doctor"
}
],
"active": true,
"period": {
"start": "2024-12-20",
"end": "2025-04-26"
},
"specialties": [
{
"code": "39457900",
"name": "Cardiology"
}
],
"available_times": [
{
"days_of_week": [
"mon"
],
"all_day": false,
"start_time": "17:00:00",
"end_time": "18:00:00"
},
{
"days_of_week": [
"mon",
"fri"
],
"all_day": true,
"start_time": "15:00:00",
"end_time": "18:00:00"
},
{
"days_of_week": [
"thu",
"fri",
"sun"
],
"all_day": true,
"start_time": "20:00:00",
"end_time": "18:00:00"
}
],
"not_available_times": [
{
"description": "Away on a holiday.",
"start_date": "2025-08-17",
"end_date": "2025-08-26"
}
]
}
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/practitionerrole/' \
--header 'Content-Type: application/json' \
--data-raw '{
"roles": [{
"code": "doctor",
"name": "doctor"
}],
"active": true,
"period": {
"start": "2024-12-20",
"end": "2025-04-26"
},
"specialties": [
{
"code": "39457900",
"name": "Cardiology"
}
],
"available_times": [
{
"days_of_week": [
"mon"
],
"all_day": false,
"start_time": "17:00:00",
"end_time": "18:00:00"
},
{
"days_of_week": [
"mon",
"fri"
],
"all_day": true,
"start_time": "15:00:00",
"end_time": "18:00:00"
},
{
"days_of_week": [
"thu",
"fri",
"sun"
],
"all_day": true,
"start_time": "20:00:00",
"end_time": "18:00:00"
}
],
"not_available_times": [
{
"description": "Away on a holiday.",
"start_date": "2025-08-17",
"end_date": "2025-08-26"
}
]
}'
Responses
🟢200Success
application/json
Body
message
string
required
resource_id
string
required
updated_fields
object
required
active
boolean
optional
notAvailable
array [object {2}]
optional
Example
{
"message": "PractitionerRole resource updated successfully.",
"resource_id": "ca451d9f-75a9-561b-b839-50dfd6343b2e",
"updated_fields": {
"active": false,
"notAvailable": [
{
"description": "Change",
"during": {
"start": "2025-06-17",
"end": "2025-08-26"
}
}
]
}
}
Modified at 2024-12-19 12:37:14