You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Introducing new **address_service.public_insurance_flow** scope for **getBookings** endpoint
* Introducing new **address_service.public_insurance_flow** scope for **getBooking** endpoint
* Introducing new **address_service.public_insurance_flow** scope for **getAddressServices** endpoint
* Introducing new **address_service.public_insurance_flow** scope for **getAddressService** endpoint
Copy file name to clipboardExpand all lines: docs/Api/BookingsApi.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,7 @@ void (empty response body)
75
75
76
76
77
77
78
-
View specific booking. Extensions: * `booking.moving` - with this parameter in url, query results will return moving data (origin and newest booking ids) as long as the booking was created after 2nd April 2025 (otherwise it will return null); for bookings that were not moved, origin and newest booking ids will be equal the id of a booking requested
78
+
View specific booking. Extensions: * `booking.moving` - with this parameter in url, query results will return moving data (origin and newest booking ids) as long as the booking was created after 2nd April 2025 (otherwise it will return null); for bookings that were not moved, origin and newest booking ids will be equal the id of a booking requested * `address_service.public_insurance_flow` - with this parameter in url, query results will return information if public insurance flow is supported on booking address
79
79
80
80
### Example
81
81
```php
@@ -136,7 +136,7 @@ Name | Type | Description | Notes
136
136
137
137
138
138
139
-
Get bookings list of a doctor in the facility Passing the `page` parameter in the query string will enable pagination. Extensions: * `booking.patient` - with this parameter in url, query results will return patient data for every booking * `booking.address_service` - with this parameter in url, query results will return address service for every booking * `booking.presence` - with this parameter in url, query results will return additional information weather patient was present for every booking * `booking.confirmation` - with this parameter in url, query results will return if visit was confirmed for every booking
139
+
Get bookings list of a doctor in the facility Passing the `page` parameter in the query string will enable pagination. Extensions: * `booking.patient` - with this parameter in url, query results will return patient data for every booking * `booking.address_service` - with this parameter in url, query results will return address service for every booking * `booking.presence` - with this parameter in url, query results will return additional information weather patient was present for every booking * `booking.confirmation` - with this parameter in url, query results will return if visit was confirmed for every booking * `address_service.public_insurance_flow` - with this parameter in url, query results will return information if public insurance flow is supported on bookings addresses
140
140
141
141
### Example
142
142
```php
@@ -199,11 +199,11 @@ Name | Type | Description | Notes
199
199
[[Back to top]](#)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to Model list]](../../README.md#documentation-for-models)[[Back to README]](../../README.md)
Move a booking for a doctor Extensions: * `address_service.public_insurance_flow` - with this parameter in url, query results will return information if public insurance flow is supported on booking address
207
207
208
208
### Example
209
209
```php
@@ -224,9 +224,10 @@ $facility_id = "facility_id_example"; // string | ID of the Facility
224
224
$doctor_id = "doctor_id_example"; // string | ID of a doctor in a facility
225
225
$address_id = "address_id_example"; // string | ID of a doctor`s address in a facility
226
226
$booking_id = "booking_id_example"; // string | ID of the Booking
Copy file name to clipboardExpand all lines: docs/Api/ServicesApi.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -133,7 +133,7 @@ void (empty response body)
133
133
134
134
135
135
136
-
Service returned in this endpoint is an address service. Service returned here is from a specified address (address_services). Extensions: * `address_service.allowed_patients` - with this parameter in url, query results will return additional parameter indicating which type of patients are allowed to book a given service * `address_service.custom_name` - with this parameter in url, query results will return additional field with a custom name of an address service
136
+
Service returned in this endpoint is an address service. Service returned here is from a specified address (address_services). Extensions: * `address_service.allowed_patients` - with this parameter in url, query results will return additional parameter indicating which type of patients are allowed to book a given service * `address_service.custom_name` - with this parameter in url, query results will return additional field with a custom name of an address service * `address_service.public_insurance_flow` - with this parameter in url, query results will return information if public insurance flow is supported
137
137
138
138
### Example
139
139
```php
@@ -194,7 +194,7 @@ Name | Type | Description | Notes
194
194
195
195
196
196
197
-
Services returned in this endpoint are address services. Services returned here are from specified address (address_services). Extensions: * `address_service.allowed_patients` - with this parameter in url, query results will return additional parameter indicating which type of patients are allowed to book a given service * `address_service.custom_name` - with this parameter in url, query results will return additional field with a custom name of an address service
197
+
Services returned in this endpoint are address services. Services returned here are from specified address (address_services). Extensions: * `address_service.allowed_patients` - with this parameter in url, query results will return additional parameter indicating which type of patients are allowed to book a given service * `address_service.custom_name` - with this parameter in url, query results will return additional field with a custom name of an address service * `address_service.public_insurance_flow` - with this parameter in url, query results will return information if public insurance flow is supported
[[Back to Model list]](../../README.md#documentation-for-models)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to README]](../../README.md)
Copy file name to clipboardExpand all lines: lib/Api/APINotificationCallbacksApi.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
*
15
15
* Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services.
Copy file name to clipboardExpand all lines: lib/Api/AddressesApi.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
*
15
15
* Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services.
Copy file name to clipboardExpand all lines: lib/Api/BookingsApi.php
+19-10Lines changed: 19 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
*
15
15
* Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services.
Copy file name to clipboardExpand all lines: lib/Api/CalendarBreaksApi.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
*
15
15
* Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services.
Copy file name to clipboardExpand all lines: lib/Api/CalendarsApi.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
*
15
15
* Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services.
Copy file name to clipboardExpand all lines: lib/Api/DoctorsApi.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
*
15
15
* Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services.
Copy file name to clipboardExpand all lines: lib/Api/FacilitiesApi.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
*
15
15
* Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services.
0 commit comments