Location Management (3.0.0)
Retrieve Locations
Retrieve a list of locations
query Parameters
required | object (Pageable) Pageable parameters |
Responses
Response Schema: application/json
Array of objects (Location) | |||||||||||||||||||||||||||||||||||||||
Array
|
Response samples
- 200
Content type
application/json
{- "results": [
- {
- "location-uuid": "918D012A-E5CE-4391-8D42-8396EF19CE83",
- "name": "Kingston",
- "name-no": "3",
- "address1": "Pine Hill River Street",
- "address2": "Surrey",
- "city": "Kingston Upon Thames",
- "county": "Surrey",
- "postcode": "GU7 3HT",
- "view-order": 2,
- "main": false,
- "locale": "en_GB",
- "phone": "+44 8896367543",
- "vat-no": "GB 123 4567 89",
- "fax": "+44 8896367544",
- "practice-name": "Vets Kingston",
- "email-address": "fakeemail@faekdomain.com",
- "website": "www.fake.domain.com",
- "region-uuid": "7ABA8B0A-F279-4175-AB3C-4203103822CB",
- "timezone": "Europe/Chisinau"
}
]
}
Retrieve Location
Retrieve a single location
path Parameters
location-uuid required | string <uuid> Example: 918D012A-E5CE-4391-8D42-8396EF19CE83 |
Responses
Response Schema: application/json
location-uuid | string <uuid> |
name | string |
name-no | string |
address1 | string |
address2 | string |
city | string |
county | string |
postcode | string |
view-order | integer <int32> |
main | boolean |
locale | string |
phone | string |
vat-no | string |
fax | string |
practice-name | string |
email-address | string <email> |
website | string |
region-uuid | string <uuid> |
timezone | string |
Response samples
- 200
Content type
application/json
{- "location-uuid": "918D012A-E5CE-4391-8D42-8396EF19CE83",
- "name": "Kingston",
- "name-no": "3",
- "address1": "Pine Hill River Street",
- "address2": "Surrey",
- "city": "Kingston Upon Thames",
- "county": "Surrey",
- "postcode": "GU7 3HT",
- "view-order": 2,
- "main": false,
- "locale": "en_GB",
- "phone": "+44 8896367543",
- "vat-no": "GB 123 4567 89",
- "fax": "+44 8896367544",
- "practice-name": "Vets Kingston",
- "email-address": "fakeemail@faekdomain.com",
- "website": "www.fake.domain.com",
- "region-uuid": "7ABA8B0A-F279-4175-AB3C-4203103822CB",
- "timezone": "Europe/Chisinau"
}
Retrieves Spaces By Location
Retrieve a list of space objects within the specified location
path Parameters
locations-uuid required | string <uuid> Example: 918D012A-E5CE-4391-8D42-8396EF19CE83 |
query Parameters
required | object (Pageable) Pageable parameters |
Responses
Response Schema: application/json
Array of objects (LocationSpace) | |||||||||||||
Array
|
Response samples
- 200
Content type
application/json
{- "results": [
- {
- "location-space-uuid": "918D012A-E5CE-4391-8D42-8396EF19CE83",
- "parent-location-uuid": "7ABA8B0A-F279-4175-AB3C-4203103822CB",
- "name": "Kingston Warehouse",
- "description": "Kingston Warehouse (Central)",
- "view-order": 3,
- "main": false
}
]
}
Retrieves all Disciplines
Retrieve a list of discipline objects
query Parameters
required | object (Pageable) Pageable parameters |
Responses
Response Schema: application/json
Array of objects (Discipline) | |||||
Array
|
Response samples
- 200
Content type
application/json
{- "results": [
- {
- "discipline-uuid": "918D012A-E5CE-4391-8D42-8396EF19CE83",
- "name": "Cardiology"
}
]
}
Retrieves Disciplines By Location
Retrieve a list of discipline objects within the specified location
path Parameters
location-uuid required | string <uuid> Example: 918D012A-E5CE-4391-8D42-8396EF19CE83 |
query Parameters
required | object (Pageable) Pageable parameters |
Responses
Response Schema: application/json
Array of objects (Discipline) | |||||
Array
|
Response samples
- 200
Content type
application/json
{- "results": [
- {
- "discipline-uuid": "918D012A-E5CE-4391-8D42-8396EF19CE83",
- "name": "Cardiology"
}
]
}
Create Discipline for a Location
Create Discipline for a Location
path Parameters
location-uuid required | string <uuid> Example: 918D012A-E5CE-4391-8D42-8396EF19CE83 |
discipline-uuid required | string <uuid> Example: 918D012A-E5CE-4391-8D42-8396EF19CE83 |
Responses
Response Schema: application/json
object (DisciplineLinkUpdateResponse)
Response samples
- 201
Content type
application/json
{ }
Delete Discipline for a Location
Delete Discipline for a Location
path Parameters
location-uuid required | string <uuid> Example: 918D012A-E5CE-4391-8D42-8396EF19CE83 |
discipline-uuid required | string <uuid> Example: 918D012A-E5CE-4391-8D42-8396EF19CE83 |
Responses
Response Schema: application/json
object (DisciplineLinkUpdateResponse)
Response samples
- 200
Content type
application/json
{ }
Retrieve Regions
Retrieve a list of regions
query Parameters
required | object (Pageable) Pageable parameters |
Responses
Response Schema: application/json
Array of objects (Region) | |||||
Array
|
Response samples
- 200
Content type
application/json
{- "results": [
- {
- "region-uuid": "918D012A-E5CE-4391-8D42-8396EF19CE83",
- "name": "Head Office"
}
]
}
Retrieve Region
Retrieve a single region object
path Parameters
region-uuid required | string <uuid> Example: 918D012A-E5CE-4391-8D42-8396EF19CE83 |
Responses
Response Schema: application/json
region-uuid | string <uuid> |
name | string |
Response samples
- 200
Content type
application/json
{- "region-uuid": "918D012A-E5CE-4391-8D42-8396EF19CE83",
- "name": "Head Office"
}
Retrieve Region's Locations
Retrieve a list of locations within the specified region.
path Parameters
region-uuid required | string <uuid> Example: 918D012A-E5CE-4391-8D42-8396EF19CE83 |
Responses
Response Schema: application/json
Array of objects (Location) | |||||||||||||||||||||||||||||||||||||||
Array
|
Response samples
- 200
Content type
application/json
{- "results": [
- {
- "location-uuid": "918D012A-E5CE-4391-8D42-8396EF19CE83",
- "name": "Kingston",
- "name-no": "3",
- "address1": "Pine Hill River Street",
- "address2": "Surrey",
- "city": "Kingston Upon Thames",
- "county": "Surrey",
- "postcode": "GU7 3HT",
- "view-order": 2,
- "main": false,
- "locale": "en_GB",
- "phone": "+44 8896367543",
- "vat-no": "GB 123 4567 89",
- "fax": "+44 8896367544",
- "practice-name": "Vets Kingston",
- "email-address": "fakeemail@faekdomain.com",
- "website": "www.fake.domain.com",
- "region-uuid": "7ABA8B0A-F279-4175-AB3C-4203103822CB",
- "timezone": "Europe/Chisinau"
}
]
}
Retrieve Location identifiers
Retrieve a list of Location identifiers.
query Parameters
required | object (Pageable) Pageable parameters |
location-uuid | string <uuid> Example: location-uuid=7ABA8B0A-F279-4175-AB3C-4203103822CB |
site-id | integer <int32> Example: site-id=123 |
Responses
Response Schema: application/json
Array of objects (LocationIdentifiers) | |||||
Array
|
Response samples
- 200
Content type
application/json
{- "results": [
- {
- "location-uuid": "918D012A-E5CE-4391-8D42-8396EF19CE83",
- "site-id": "123"
}
]
}