Welcome to the InQuicker API V2 Docs! 👋
The second version (V2) of our API provides read-access to certain kinds of data.
This data can include:
Schedules
Facilities
Providers
Locations
Regions
Service lines
Appointment types
If your health system is set up in InQuicker, this API provides a way to access that data so that you can build a totally customized online booking experience on your own website. Our partners often use the API to build out schedule inventory pages, directory pages for providers, and other resources in this vein.
All API requests must be sent over HTTPS and the API Key must be included in the request as a parameter:
https://api.inquicker.com/v2/schedules?api_key=db19faf29227a76ad88e22af411a8b3a16356dc
Every response is contained within an envelope. This is a predictable set of keys with which you can expect to interact with:
{
'data': [],
'metadata': {
'statusCode': 200,
'pagination': {
'totalItems': 100,
'totalPages': 10,
'currentPage': '/schedules?page=3&api_key=db19faf29227a76ad88e22af411a8b3a16356dc3',
'previousPage': '/schedules?page=2&api_key=db19faf29227a76ad88e22af411a8b3a16356dc3',
'nextPage': '/schedules?page=4&api_key=db19faf29227a76ad88e22af411a8b3a16356dc3'
},
'error': null,
'poweredBy': {
'text': 'Powered by InQuicker',
'url': 'https://example.inquicker.com'
}
}
}
The data key is the actual results that were requested from the end-point.
The metadata key is used to give extra information about the response to the developer, such as pagination, errors, and status code information related to the request.
When an error occurs the API will return a ['metadata']['statusCode']
which contains the HTTP status code, as well as an error description that will be in the ['metadata']['error']
key.
Status | Description |
---|---|
200 | The request was successful and results were returned |
401 | The API key provided is invalid |
404 | The resource or end-point request does not exist |
500 | Internal server error has occured |
JSONP is an effective cross-domain communication technique, one that lets you bypass the same-origin policy limitations imposed by the current browsers.
In order to use JSONP with the API you will need to request a JSONP API key from InQuicker. The JSONP API key has some technical differences which include:
The API key can be safely exposed to clients as it is restricted to be read-only.
All responses are returned with the 200 OK HTTP status code regardless of the outcome. The real response code is contained in the ['metadata']['statusCode']
response key. This allows for proper handling of response codes in your JSONP client application.
In order to have your callback executed, all that needs to be done is to have a callback
parameter with the function name specified in the request:
callbackFunction({
'data': [],
'metadata': {
'statusCode': 200,
'pagination': {
'totalItems': 100,
'totalPages': 10,
'currentPage': '/schedules?page=3&api_key=db19faf29227a76ad88e22af411a8b3a16356dc3',
'previousPage': '/schedules?page=2&api_key=db19faf29227a76ad88e22af411a8b3a16356dc3',
'nextPage': '/schedules?page=4&api_key=db19faf29227a76ad88e22af411a8b3a16356dc3'
},
'error': null,
'poweredBy': {
'text': 'Powered by InQuicker',
'url': 'https://example.inquicker.com'
}
}
});
Responses with multiple results will be paginated to 50 items by default. You can set a custom per-page amount with the per_page
parameter, and request specific page results by passing the page
parameter.
To retrieve additional pages after the intitial request, the pagination
URL paths within the responses metadata
key can be used:
Parameter | Description |
---|---|
totalItems | The total number of results found |
totalPages | The total number of pages of results found |
currentPage | The current page requested |
previousPage | The previous page of results |
nextPage | The next page of results |
InQuicker’s branding standards require a “Powered by InQuicker” link to be included on all pages using InQuicker’s scheduling tools. To ensure search optimization still occurs for customer’s branded subdomain, we also include a link and anchor text within the metadata of each API response. You should link the powered by InQuicker logo to response['metadata']['poweredByURL']
response using the response['metadata']['poweredByText']
as the anchor text on any page where you use the API.
The powered by logo can be downloaded at: https://iqapp.inquicker.com/assets/site/logos/powered-by.png
In order to send patients to the registration page, the URL will need to be generated from the response that you receive from the schedules end-point.
The base registration URL for the schedule is located in the ['data']['registrationUrl']
of the response and will look like the following:
https://example.inquicker.com/schedule/5
Two parameters from the response will also be needed in order to complete the registration URL:
Response key | URL Parameter | Description |
---|---|---|
time | at | The registration time for the visit |
appointmentTypes | appointment_type | The appointment type for the visit. If the appointmentTypes response is null, the appointment_type parameter should not be passed to the registration URL. |
The required parameters will be available within the availableTimes
key of the schedules response.
"availableTimes": [{
"date": "2014-09-17",
"times": [{
"time": "2014-09-17T09:00:00-04:00",
"appointmentTypes": [{
"id": "heart-surgery",
"name": "Heart Surgery"
}, {
"id": "general-consultation",
"name": "General Consultation"
}, {
"id": "brain-surgery",
"name": "Brain Surgery"
}]
}]
}]
https://example.inquicker.com/schedule/5?appointment_type=heart-surgery&at=2014-11-05T14:00:00Z
Description of what schedules are goes here.
Lists the schedules available to the health system.
string
(required) The key required to authenticate with the API.
string
(optional) Example: westcoast-clinic,general-hospitalThe comma separated names of facilities to filter by.
string
(optional) Example: dr-john-smith,dr-sam-adamsThe comma separated names of providers to filter by.
string
(optional) Example: northThe comma separated names of regions to filter by.
string
(optional) Example: nanaimoThe comma separated names of locations to filter by.
string
(optional) Example: patientThe schedule contexts to filter by, default value is ‘patient’, options are ‘patient’, ‘internal’, and ‘discharge’.
string
(optional) Example: family-medicineThe comma separated names of services to filter by.
string
(optional) Example: trauma-careThe comma separated names of service lines to filter by.
string
(optional) Example: heart-surgeryThe comma separated names of appointment types to filter by.
string
(optional) Example: 2016-01-30The start of availability to filter by.
string
(optional) Example: 2016-02-25The end of availability to filter, no more then 31 days past the start_date.
string
(optional) Default: None Example: facility,providerThe comma separated names of response payloads to include.
string
(optional) Example: english,spanishThe comma separated list of languages spoken to filter by.
float
(optional) Limit results to schedules within the area of the specified latitude/longitude.
float
(optional) Limit results to schedules within the area of the specified latitude/longitude.
integer
(optional) Default: 25 Limit results to schedules within this many miles of the specified latitude/longitude.
string
(optional) Example: 12345Remote Appointment Type ID to filter by, if used the appointment_types option will be ignored.
string
(optional) Example: 12345Remote Location ID to filter by, if used the locations
option will be ignored.
string
(optional) Example: 12345Remote Provider ID to filter by, if used the providers
option will be ignored.
string
(optional) Searches facility and provider names for the string passed.
boolean
(optional) Default: false Includes schedules that are not yet active in the system.
integer
(optional) Default: 1 The page number of results to return.
integer
(optional) Default: 50 The number of results to return per page. (Maximum 200)
string
(optional) Example: displaySchedulesThe JSONP callback function name to be executed.
200
ToggleContent-Type: application/json
{
'data': [{
'hasAvailability': true,
'appointmentTypes': [
{ "id": "heart-surgery", "name": "Heart Surgery", "remote_id": null },
{ "id": "brain-surgery", "name": "Brain Surgery", "remote_id": "123456" },
{ "id": "general-consultation", "name": "General Consultation", "remote_id": null }
],
'nextAvailableTimes': [
{ "appointmentType": "heart-surgery", "time": "2014-09-17T15:30:00-04:00" },
{ "appointmentType": "general-consultation", "time": "2014-09-21T12:30:00-04:00" },
{ "appointmentType": "brain-surgery", "time": "2014-09-27T10:30:00-04:00" }
],
'registrationUrl': 'https://example.inquicker.com/schedule/new/schedule-name',
'service': {
'id': 'emergency-room',
'name': 'Emergency Room'
},
'facility': {
'id': 'example-medical-clinic',
'name': 'example Medical Clinic',
'homepageUrl': 'http://examplemedicalclinic.com',
'inventoryUrl': 'https://inquicker.com/facility/example-medical-clinic',
'logoImageUrl': 'https://inquicker.com/files/profile/practitioner/original_964.png'
},
'provider': {
'id': 'john-smith',
'name': 'John Smith',
'suffix': 'MD',
'gender': 'Male',
'phone': '2502442832',
'credentials': ['American Board of Sport Psychology'],
'languages': [{
'id': 'english',
'name': 'English'
}],
'services': [{
'id': 'pediatrics',
'name': 'Pediatrics'
}, {
'id': 'internal-medicine',
'name': 'Internal Medicine'
}],
'gradSchool': 'Loma Linda University School of Medicine',
'undergradSchool': 'UBC Faculty of Medicine',
'inventoryUrl': 'https://inquicker.com/provider/john-smith',
'profileImageUrl': 'https://inquicker.com/files/profile/practitioner/original_964.png'
},
'location': {
'id': 'nanaimo',
'name': 'Nanaimo',
'address': '1200 Dufferin Crescent',
'state': 'TN',
'city': 'Nashville',
'zip': 90210,
'phone': '2532402833',
'latitude': 35.7671,
'longitude': -86.9199,
'services': [{
'id': 'pediatrics',
'name': 'Pediatrics'
}, {
'id': 'internal-medicine',
'name': 'Internal Medicine'
}]
},
'region': {
'id': 'north',
'name': 'North'
},
"id": "387d55ef-2ba9-4368-9c7e-ef4e95351352",
"availableTimes": [{
"date": "2014-09-17",
"times": [{
"time": "2014-09-17T09:00:00-04:00",
"appointmentTypes": [{
"id": "heart-surgery",
"name": "Heart Surgery"
}, {
"id": "general-consultation",
"name": "General Consultation"
}, {
"id": "brain-surgery",
"name": "Brain Surgery"
}] }, {
"time": "2014-09-17T09:15:00-04:00",
"appointmentTypes": [{
"id": "heart-surgery",
"name": "Heart Surgery"
}, {
"id": "general-consultation",
"name": "General Consultation"
}, {
"id": "brain-surgery",
"name": "Brain Surgery"
}] }
}
}],
'metadata': {
'statusCode': 200,
'pagination': {
'totalResults': 100,
'totalPages': 10,
'currentPage': '/schedules?page=3&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'previousPage': '/schedules?page=2&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'nextPage': '/schedules?page=4&api_key=db19faf29227a76ad88e22af411a8b3a16356dc'
},
'error': null,
'poweredBy': {
'text': 'Powered by InQuicker',
'url': 'https://example.inquicker.com'
}
}
}
401
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 401,
'pagination': null,
'error': 'The request cannot be authenticated with the API key provided.'
}
}
422
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 422,
'pagination': null,
'error': 'Filter date must not exceed 31 days and be in ISO8601 format.'
}
}
500
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 500,
'pagination': null,
'error': 'An error has occured. Our development team has been notified.'
}
}
The facility is a representation of a Hospital, Clinic, Practice, etc - an organizational entity that can have one or more access points, and from access points, schedules. A facility can have multiple addresses, and can optionally be associated with a region.
Returns a list of facilities.
string
(required) The key required to authenticate with the API.
string
(optional) Example: northThe comma separated names of regions to filter by.
string
(optional) Example: english,spanishThe comma separated list of languages spoken to filter by.
float
(optional) Limit results to schedules within the area of the specified latitude/longitude.
float
(optional) Limit results to schedules within the area of the specified latitude/longitude.
integer
(optional) Default: 25 Limit results to schedules within this many miles of the specified latitude/longitude.
string
(optional) Searches facility names for the string passed.
integer
(optional) Default: 1 The page number of results to return.
integer
(optional) Default: 50 The number of results to return per page. (Maximum 200)
string
(optional) Example: displayFacilitiesThe JSONP callback function name to be executed.
200
ToggleContent-Type: application/json
{
'data': [{
'id': 'example-medical-clinic',
'name': 'example Medical Clinic',
'inventoryUrl': 'https://inquicker.com/facility/example-medical-clinic',
'homepageUrl': 'http://examplemedicalclinic.com',
'logoImageUrl': 'https://inquicker.com/files/profile/practitioner/original_964.png',
'timeZone': 'Eastern Time (US & Canada)',
'locations' : [{
'id': 'nanaimo',
'name': 'Nanaimo',
'address': '1200 Dufferin Crescent',
'state': 'TN',
'city': 'Nashville',
'zip': 90210,
'phone': '2507557691'
'longitude': 9.96233,
'latitude': 49.80404
}],
'providers' : [{
'id': 'john-smith',
'name': 'John Smith',
'suffix': 'MD',
'gender': 'Male',
'phone': '2502402832',
'credentials': ['American Board of Sport Psychology'],
'languages': [{
'id': 'english',
'name': 'English'
}],
'services': [{
'id': 'pediatrics',
'name': 'Pediatrics'
}, {
'id': 'internal-medicine',
'name': 'Internal Medicine'
}],
'gradSchool': 'Loma Linda University School of Medicine',
'undergradSchool': 'UBC Faculty of Medicine',
'inventoryUrl': 'https://inquicker.com/provider/john-smith',
'profileImageUrl': 'https://inquicker.com/files/profile/practitioner/original_964.png'
}],
'region': {
'id': 'north',
'name': 'North'
}
}],
'metadata': {
'statusCode': 200,
'pagination': {
'totalItems': 100,
'totalPages': 10,
'currentPage': '/facilities?page=3&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'previousPage': '/facilities?page=2&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'nextPage': '/facilities?page=4&api_key=db19faf29227a76ad88e22af411a8b3a16356dc'
},
'error': null,
'poweredBy': {
'text': 'Powered by InQuicker',
'url': 'https://example.inquicker.com'
}
}
}
401
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 401,
'pagination': null,
'error': 'The request cannot be authenticated with the API key provided.'
}
}
500
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 500,
'pagination': null,
'error': 'An error has occured. Our development team has been notified.'
}
}
Returns a single facility.
string
(required) Example: example-medical-clinicThe unique identifier of the facility.
string
(required) The key required to authenticate with the API.
string
(optional) Example: displayFacilitiesThe JSONP callback function name to be executed.
200
ToggleContent-Type: application/json
{
'data': {
'id': 'example-medical-clinic',
'name': 'example Medical Clinic',
'inventoryUrl': 'https://inquicker.com/facility/example-medical-clinic',
'homepageUrl': 'http://examplemedicalclinic.com',
'logoImageUrl': 'https://inquicker.com/files/profile/practitioner/original_964.png?1400640688',
'timeZone': 'Eastern Time (US & Canada)',
'locations' : [{
'id': 'nanaimo',
'name': 'Nanaimo',
'address': '1200 Dufferin Crescent',
'state': 'TN',
'city': 'Nashville',
'zip': 90210,
'phone': '2507557691',
'longitude': 9.96233,
'latitude': 49.80404
}],
'providers' : [{
'id': 'john-smith',
'name': 'John Smith',
'suffix': 'MD',
'gender': 'Male',
'phone': '2502432832',
'credentials': ['American Board of Sport Psychology'],
'languages': [{
'id': 'english',
'name': 'English'
}],
'services': [{
'id': 'pediatrics',
'name': 'Pediatrics'
}, {
'id': 'internal-medicine',
'name': 'Internal Medicine'
}],
'gradSchool': 'Loma Linda University School of Medicine',
'undergradSchool': 'UBC Faculty of Medicine',
'inventoryUrl': 'https://inquicker.com/provider/john-smith',
'profileImageUrl': 'https://inquicker.com/files/profile/practitioner/original_964.png?1400640688'
}],
'region': {
'id': 'north',
'name': 'North'
}
},
'metadata': {
'statusCode': 200,
'pagination': null,
'error': null,
'poweredBy': {
'text': 'Powered by InQuicker',
'url': 'https://example.inquicker.com'
}
}
}
401
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 401,
'pagination': null,
'error': 'The request cannot be authenticated with the API key provided.'
}
}
404
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 404,
'pagination': null,
'error': 'The requested facility (example-medical-clinic) could not be found.'
}
}
500
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 500,
'pagination': null,
'error': 'An error has occured. Our development team has been notified.'
}
}
The provider is a representation of a person who is a provider of health care.
Returns a list of providers.
string
(required) The key required to authenticate with the API.
string
(optional) Example: northThe comma separated names of regions to filter by.
string
(optional) Example: westcoast-clinic,general-hospitalThe comma separated names of facilities to filter by.
boolean
(optional) Default: false Includes providers that do not yet have schedules active in the system.
boolean
(optional) Default: nil Limit results to providers with/without integration.
string
(optional) Example: english,spanishThe comma separated list of languages spoken to filter by.
float
(optional) Limit results to schedules within the area of the specified latitude/longitude.
float
(optional) Limit results to schedules within the area of the specified latitude/longitude.
string
(optional) Limit reslts to providers with this NPi.
integer
(optional) Default: 25 Limit results to schedules within this many miles of the specified latitude/longitude.
string
(optional) Searches provider names for the string passed.
integer
(optional) Default: 1 The page number of results to return.
integer
(optional) Default: 50 The number of results to return per page. (Maximum 200)
string
(optional) Example: displayProvidersThe JSONP callback function name to be executed.
boolean
(optional) Default: false Exclude providers that have hidden schedules.
200
ToggleContent-Type: application/json
{
'data': [{
'id': 'john-smith',
'name': 'John Smith',
'npi': '01234567890',
'suffix': 'MD',
'gender': 'Male',
'phone': '2502442832',
'credentials': ['American Board of Sport Psychology'],
'languages': [{
'id': 'english', 'English'
}],
'services': [{
'id': 'pediatrics',
'name': 'Pediatrics'
}, {
'id': 'internal-medicine',
'name': 'Internal Medicine'
}],
'facilities': [{
'id': 'example-medical-clinic',
'name': 'example Medical Clinic',
'homepageUrl': 'http://examplemedicalclinic.com',
'inventoryUrl': 'https://inquicker.com/facility/example-medical-clinic',
'logoImageUrl': 'https://inquicker.com/files/profile/practitioner/original_964.png?1400640688',
'timeZone': 'Eastern Time (US & Canada)',
'locations' : [{
'id': 'nanaimo',
'name': 'Nanaimo',
'address': '1200 Dufferin Crescent',
'state': 'TN',
'city': 'Nashville',
'zip': 90210,
'phone': '2507557691',
'longitude': 9.96233,
'latitude': 49.80404
}],
}],
'gradSchool': 'Loma Linda University School of Medicine',
'undergradSchool': 'UBC Faculty of Medicine',
'inventoryUrl': 'https://inquicker.com/provider/john-smith',
'profileImageUrl': 'https://inquicker.com/files/profile/practitioner/original_964.png?1400640688'
],
'metadata': {
'statusCode': 200,
'pagination': {
'totalItems': 100,
'totalPages': 10,
'currentPage': '/providers?page=3&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'previousPage': '/providers?page=2&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'nextPage': '/providers?page=4&api_key=db19faf29227a76ad88e22af411a8b3a16356dc'
},
'error': null,
'poweredBy': {
'text': 'Powered by InQuicker',
'url': 'https://example.inquicker.com'
}
}
}
401
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 401,
'pagination': null,
'error': 'The request cannot be authenticated with the API key provided.'
}
}
500
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 500,
'pagination': null,
'error': 'An error has occured. Our development team has been notified.'
}
}
Returns an individual provider.
string
(required) Example: john-smithThe unique identifier of the provider.
string
(required) The key required to authenticate with the API.
string
(optional) Example: displayProvidersThe JSONP callback function name to be executed.
200
ToggleContent-Type: application/json
{
'data': {
'id': 'john-smith',
'name': 'John Smith',
'npi': '01234567890',
'suffix': 'MD',
'gender': 'Male',
'phone': '2542402832',
'credentials': ['American Board of Sport Psychology'],
'languages': [{
'id': 'english',
'name': 'English'
}],
'services': [{
'id': 'pediatrics',
'name': 'Pediatrics'
}, {
'id': 'internal-medicine',
'name': 'Internal Medicine'
}],
'facilities': [{
'id': 'example-medical-clinic',
'name': 'example Medical Clinic',
'homepageUrl': 'http://examplemedicalclinic.com',
'inventoryUrl': 'https://inquicker.com/facility/example-medical-clinic',
'logoImageUrl': 'https://inquicker.com/files/profile/practitioner/original_964.png?1400640688',
'timeZone': 'Eastern Time (US & Canada)',
'locations' : [{
'id': 'nanaimo',
'name': 'Nanaimo',
'address': '1200 Dufferin Crescent',
'state': 'TN',
'city': 'Nashville',
'zip': 90210,
'phone': '2507557691',
'longitude': 9.96233,
'latitude': 49.80404
}],
}],
'gradSchool': 'Loma Linda University School of Medicine',
'undergradSchool': 'UBC Faculty of Medicine',
'inventoryUrl': 'https://inquicker.com/provider/john-smith',
'profileImageUrl': 'https://inquicker.com/files/profile/practitioner/original_964.png?1400640688'
},
'metadata': {
'statusCode': 200,
'pagination': null,
'error': null,
'poweredBy': {
'text': 'Powered by InQuicker',
'url': 'https://example.inquicker.com'
}
}
}
401
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 401,
'pagination': null,
'error': 'The request cannot be authenticated with the API key provided.'
}
}
404
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 404,
'pagination': null,
'error': 'The requested provider (john-smith) could not be found.'
}
}
500
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 500,
'pagination': null,
'error': 'An error has occured. Our development team has been notified.'
}
}
Lists the locations available to the health system.
Returns a list of locations.
string
(required) The key required to authenticate with the API.
string
(optional) Example: northThe comma separated names of regions to filter by.
string
(optional) Example: westcoast-clinic,general-hospitalThe comma separated names of facilities to filter by.
string
(optional) Example: dr-john-smith,dr-sam-adamsThe comma separated names of providers to filter by.
float
(optional) Limit results to schedules within the area of the specified latitude/longitude.
float
(optional) Limit results to schedules within the area of the specified latitude/longitude.
integer
(optional) Default: 25 Limit results to schedules within this many miles of the specified latitude/longitude.
string
(optional) Searches locations names for the string passed.
integer
(optional) Default: 1 The page number of results to return.
integer
(optional) Default: 50 The number of results to return per page. (Maximum 200)
string
(optional) Example: displayLocationsThe JSONP callback function name to be executed.
200
ToggleContent-Type: application/json
{
'data': [{
'id': 'nanaimo',
'name': 'Nanaimo',
'address': '1200 Dufferin Crescent',
'state': 'TN',
'city': 'Nashville',
'zip': 90210,
'phone': '2507557691',
'longitude': 9.96233,
'latitude': 49.80404,
'services': [{
'id': "emergency-room",
'name': "Emergency Room",
'serviceLine": {
'id': "emergency-room",
'name': "Emergency Room"
}
}]
}],
'metadata': {
'statusCode': 200,
'pagination': {
'totalItems': 100,
'totalPages': 10,
'currentPage' : '/locations?page=3&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'previousPage' : '/locations?page=2&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'nextPage' : '/locations?page=4&api_key=db19faf29227a76ad88e22af411a8b3a16356dc'
},
'error': null,
'poweredBy': {
'text': 'Powered by InQuicker',
'url': 'https://example.inquicker.com'
}
}
}
401
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 401,
'pagination': null,
'error': 'The request cannot be authenticated with the API key provided.'
}
}
500
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 500,
'pagination': null,
'error': 'An error has occured. Our development team has been notified.'
}
}
Lists the regions available to the health system.
Returns a list of regions.
string
(required) The key required to authenticate with the API.
string
(optional) Searches region names for the string passed.
integer
(optional) Default: 1 The page number of results to return.
integer
(optional) Default: 50 The number of results to return per page. (Maximum 200)
string
(optional) Example: displayRegionsThe JSONP callback function name to be executed.
200
ToggleContent-Type: application/json
{
'data': [{
'id': 'pacific-north-west',
'name': 'Pacific Northwest'
}],
'metadata': {
'statusCode': 200,
'pagination': {
'totalItems': 100,
'totalPages': 10,
'currentPage' : '/regions?page=3&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'previousPage' : '/regions?page=2&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'nextPage' : '/regions?page=4&api_key=db19faf29227a76ad88e22af411a8b3a16356dc'
},
'error': null,
'poweredBy': {
'text': 'Powered by InQuicker',
'url': 'https://example.inquicker.com'
}
}
}
401
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 401,
'pagination': null,
'error': 'The request cannot be authenticated with the API key provided.'
}
}
500
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 500,
'pagination': null,
'error': 'An error has occured. Our development team has been notified.'
}
}
Lists the service lines available to the health system with services.
Returns a list of service lines.
string
(required) The key required to authenticate with the API.
string
(optional) Searches service line names for the string passed.
integer
(optional) Default: 1 The page number of results to return.
integer
(optional) Default: 50 The number of results to return per page. (Maximum 200)
string
(optional) Example: displayServiceLinesThe JSONP callback function name to be executed.
200
ToggleContent-Type: application/json
{
'data': [{
'id': 'emergency-room',
'name': 'Emergency Room',
'services': [{
'id': 'emergency-room',
'name': 'Emergency Room'
}, {
'id': 'urgent-care',
'name': 'Urgent Care'
}]
}, {
'id': 'diagnostic-imaging',
'name': 'Diagnostic Imaging',
'services': [{
'id': 'mammography',
'name': 'Mammography'
}, {
'id': 'diagnostic-imaging',
'name': 'Diagnostic Imaging'
}]
}],
'metadata': {
'statusCode': 200,
'pagination': {
'totalItems': 100,
'totalPages': 10,
'currentPage': '/service_lines?page=3&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'previousPage': '/service_lines?page=2&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'nextPage': '/service_lines?page=4&api_key=db19faf29227a76ad88e22af411a8b3a16356dc'
},
'error': null,
'poweredBy': {
'text': 'Powered by InQuicker',
'url': 'https://example.inquicker.com'
}
}
}
401
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 401,
'pagination': null,
'error': 'The request cannot be authenticated with the API key provided.'
}
}
500
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 500,
'pagination': null,
'error': 'An error has occured. Our development team has been notified.'
}
}
Lists the appointment types available to the health system.
Returns a list of appointment types.
string
(required) The key required to authenticate with the API.
string
(optional) Searches appointment type names for the string passed.
integer
(optional) Default: 1 The page number of results to return.
integer
(optional) Default: 50 The number of results to return per page. (Maximum 200)
string
(optional) Example: displayAppointmentTypesThe JSONP callback function name to be executed.
200
ToggleContent-Type: application/json
{
'data': [{
'id' : 'heart-surgery',
'name' : 'Heart Surgery'
}, {
'id' : 'lung-surgery',
'name' : 'Lung Surgery'
}],
'metadata': {
'statusCode': 200,
'pagination': {
'totalItems': 100,
'totalPages': 10,
'currentPage' : '/appointment_types?page=3&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'previousPage' : '/appointment_types?page=2&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'nextPage' : '/appointment_types?page=4&api_key=db19faf29227a76ad88e22af411a8b3a16356dc'
},
'error': null,
'poweredBy': {
'text': 'Powered by InQuicker',
'url': 'https://example.inquicker.com'
}
}
}
401
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 401,
'pagination': null,
'error': 'The request cannot be authenticated with the API key provided.'
}
}
500
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 500,
'pagination': null,
'error': 'An error has occured. Our development team has been notified.'
}
}
Lists the languages available to the health system.
Returns a list of appointment types.
string
(required) The key required to authenticate with the API.
string
(optional) Searches language names for the string passed.
integer
(optional) Default: 1 The page number of results to return.
integer
(optional) Default: 50 The number of results to return per page. (Maximum 200)
string
(optional) Example: displayAppointmentTypesThe JSONP callback function name to be executed.
200
ToggleContent-Type: application/json
{
'data': [{
'id' : 'english',
'name' : 'English'
}, {
'id' : 'spanish',
'name' : 'Spanish'
}],
'metadata': {
'statusCode': 200,
'pagination': {
'totalItems': 100,
'totalPages': 10,
'currentPage' : '/languages?page=3&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'previousPage' : '/languages?page=2&api_key=db19faf29227a76ad88e22af411a8b3a16356dc',
'nextPage' : '/languages?page=4&api_key=db19faf29227a76ad88e22af411a8b3a16356dc'
},
'error': null,
'poweredBy': {
'text': 'Powered by InQuicker',
'url': 'https://example.inquicker.com'
}
}
}
401
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 401,
'pagination': null,
'error': 'The request cannot be authenticated with the API key provided.'
}
}
500
ToggleContent-Type: application/json
{
'data': null,
'metadata': {
'statusCode': 500,
'pagination': null,
'error': 'An error has occured. Our development team has been notified.'
}
}
Last Generated: 11/23/2017