A department within a location contact.
A unique Id for the location contact department.
The billing party's preference for receiving billing related commsemail, post, do_not_send.
A flag indiciating if billing is enabled for the location contact department.
A reference (such as an XX reference), person or company that invoices for this department should be flagged as for the attention of (FAO).
The date/time the location contact department was created.
The location contact department's primary email address.
A list of email addresses to send invoices (and related documents) to.
A flag indicating that while billing is enabled for the location contact depatment they cannot appear as an option for new contracts or invoices.
The Id of the location contact this department relates to.
A list of locations the location contact department relates to.
The date/time the location contact department was created.
The name of the location contact department.
Additional notes for the location contact department.
The method the billing party is expected to use for making paymentscard, cash, cheque, standing_order, direct_debit, bac.
The location contact department's phone number.
The location contact department's postal address.
Address line 1 (e.g. house name/number).
Address line 2 (e.g. street).
Town, city or village.
County.
Postal code.
Country.
{
"_id": "6a56c6c169209a7d72be9c34",
"billing_comms_preference": null,
"billing_enabled": true,
"billing_fao": "10Q",
"created": "2026-07-14 23:31:13",
"email": "billing@ouh.nhs.uk",
"email_invoices_to": null,
"future_billing_disabled": null,
"location_contact": "6a56c6c169209a7d72be9c26",
"locations": [
"6a56c6c169209a7d72be9bfe"
],
"modified": "2026-07-14 23:31:13",
"name": "Oxfordshire",
"notes": "Previously Oxfordshire CCG",
"payment_method": null,
"phone": "01865 223493",
"postal_address": {
"address_1": "",
"address_2": "",
"country": "",
"county": "",
"postcode": "",
"town": ""
}
}
Return a list of location contact departments.
['_id']
A list of attributes to include for fetched objects.
A filter that accepts a list of Ids and filters the items returned to those with an Id in the list.
A filter that accepts a list of location Ids and filters location contact departments by the location they relate to.
A filter that accepts a list of location contact Ids and filters location contact departments by the location contact they relate to.
A filter that accepts a date/time and filters the items returned to those modified after the date/time.
A filter that accepts a date/time and filters the items returned to those modified before the date/time.
A case insensitive keyword filter applied to the following fields; billing_fao, name.
1
The page number to fetch.
10
The number of items to return per page.
_id
A list of fields the returned items can be sorted by. Fields prefixed with minus (-) sign are sorted in descending order.
Returns a page of location contact departments.
var locationContactDepartments = apiClient.Request(
HttpMethod.Get,
"location-contact-departments",
new MultiValueDict()
.Add("attributes", "billing_fao", "name")
.Add("filters-location", locationId)
);
const locationContactDepartments = await apiClient.request(
"GET",
"location-contact-departments",
{
"params": {
"attributes": ["billing_fao", "name"],
"filters-location": [locationId]
}
}
)
<?php
$location_contact_departments = $api_client->request(
'GET',
'location-contact-departments',
[
'attributes'=>['billing_fao', 'name'],
'filters-location'=>[location_id]
]
);
location_contact_departments = api_client(
'GET',
'location-contact-departments',
params={
'attributes': ['billing_fao', 'name'],
'filters-location': [location_id]
}
)
location_contacts_departments = api_client.request(
'GET',
'location-contact-departments',
params: {
'attributes' => ['billing_fao', 'name'],
'filters-location' => [location_id]
}
)
{
"item_count": 0,
"items": [],
"page": 1,
"page_count": 1,
"per_page": 10
}
Retreive a location contact department object.
Returns a location contact department object.
var locationContactDepartment = apiClient.Request(
HttpMethod.Get,
$"location-contact-departments/{locationContactDepartmentId}"
);
const locationContactDepartment = await apiClient.request(
"GET",
`location-contact-departments/${locationContactDepartmentId}`
)
<?php
$location_contact_department = $api_client->request(
'GET',
'location-contact-departments/' . $location_contact_department_id
);
location_contact_department = api_client(
'GET',
f'location-contact-departments/{location_contact_department_id}'
)
location_contact_department = api_client.request(
'GET',
"location-contact-departments/#{location_contact_department_id}"
)
{
"_id": "6a56c6c169209a7d72be9c34",
"billing_comms_preference": null,
"billing_enabled": true,
"billing_fao": "10Q",
"created": "2026-07-14 23:31:13",
"email": "billing@ouh.nhs.uk",
"email_invoices_to": null,
"future_billing_disabled": null,
"location_contact": "6a56c6c169209a7d72be9c26",
"locations": [
"6a56c6c169209a7d72be9bfe"
],
"modified": "2026-07-14 23:31:13",
"name": "Oxfordshire",
"notes": "Previously Oxfordshire CCG",
"payment_method": null,
"phone": "01865 223493",
"postal_address": {
"address_1": "",
"address_2": "",
"country": "",
"county": "",
"postcode": "",
"town": ""
}
}