A contact for the location (typically another organization). Contacts for a location might include suppliers (e.g. a heating engineer or hairdresser), support services (e.g. a surgery or dentist), companies the location might recommended to service users and their family (e.g florists, funeral directors), etc.
Location contacts help to provide consistency when location managers leave and are replaced, provide a central contact list for other staff and can be used as a basis for local B2B marketing.
A unique Id for the location contact.
The location contact's account code, used when exporting invoices to an accounts package.
The billing party's preference for receiving billing related commsemail, post.
A flag indicating if invoices generated during an invoice run should be consolidated into a single invoice for the location contact.
A flag indiciating if billing is enabled for the location contact.
The name of the location contact's company.
The date/time the location contact was created.
The location contact's email address.
A list of email addresses to send invoices (and related documents) to.
The location contact's first name.
A flag indicating that while billing is enabled for the location contact they cannot appear as an option for new contracts or invoices.
A flag indicating if the location contact has an direct debit mandate in place (in any state, pending, active or pending cancellation).
A list of fields to identify a service user with when generating a line item for the service user in an invoice for the location contactaccount_code, full_name, initials, nhs_number, patient_id, ref.
The location contact's job title.
A flag indicating that the billing party wants to receive billing comms (invoices, statements, etc.) in larger print.
The location contact's last name.
A list of locations the location contact relates to.
The location contact's mobile number.
The date/time the location contact was created.
Flag indicating if the contact is applicable to multiple locations.
Flag indicating that the service user contact is the next of kin for the service user.
Additional notes for the location contact.
The method the billing party is expected to use for making paymentscard, cash, cheque, standing_order, direct_debit, bac.
The location contact's phone number.
The location contact'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.
The location contact's street address.
Address line 1 (e.g. house name/number).
Address line 2 (e.g. street).
Town, city or village.
County.
Postal code.
Country.
A set of tags to help make contacts easy to find and organizer, for example you might tag a contact as 'dentist' and 'medical services'.
The location contact's title.
The tenant ID for the contact on Tradeshift.
The URL of the location contact company's website
The service user contact's work phone number.
{
"_id": "6724fbc84f73a2cebf637822",
"account_code": "OCC0003",
"billing_comms_preference": null,
"billing_consolidate_invoices": false,
"billing_enabled": true,
"company_name": "Oxfordshire County Council",
"created": "2024-11-01 16:03:20",
"email": "micheal.frey@oxfordshire.gov.uk",
"email_invoices_to": null,
"first_name": "Michael",
"future_billing_disabled": null,
"has_direct_debit_mandate": null,
"invoices_service_user_id_fields": null,
"job_title": null,
"large_print_requested_for_billing": null,
"last_name": "Frey",
"locations": [
"6724fbc74f73a2cebf6377fa"
],
"mobile": null,
"modified": "2024-11-01 16:03:20",
"multi_location": false,
"next_of_kin": null,
"notes": "Michael is only available 9am-12pm Monday-Wednesday.",
"payment_method": "bac",
"phone": "0345 050 7666",
"postal_address": {
"address_1": "County Hall",
"address_2": "New Road",
"country": "",
"county": "",
"postcode": "OX1 1ND",
"town": "Oxford"
},
"street_address": {
"address_1": "",
"address_2": "",
"country": "",
"county": "",
"postcode": "",
"town": ""
},
"tags": [
"LA"
],
"title": "",
"tradeshift_tenant_id": null,
"website_url": "https://www.oxfordshire.gov.uk",
"work_phone": null
}
Return a list of location contacts.
['_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 contacts by the location 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; account_code, company_name.
A filter that accepts a list of tags and filters location contacts by the tags assigned to them.
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 contacts.
var locationContacts = apiClient.Request(
HttpMethod.Get,
"location-contacts",
new MultiValueDict()
.Add("attributes", "company_name", "first_name", "last_name")
.Add("filters-location", locationId)
);
<?php
$location_contacts = $api_client->request(
'GET',
'location-contacts',
[
'attributes'=>['company_name', 'first_name', 'last_name'],
'filters-location'=>[location_id]
]
);
location_contacts = api_client(
'GET',
'location-contacts',
params={
'attributes': ['company_name', 'first_name', 'last_name'],
'filters-location': [location_id]
}
)
location_contacts = api_client.request(
'GET',
'location-contacts',
params: {
'attributes' => ['company_name', 'first_name', 'last_name'],
'filters-location' => [location_id]
}
)
{
"item_count": 0,
"items": [],
"page": 1,
"page_count": 1,
"per_page": 10
}
Retreive a location contact object.
Returns a location contact object.
var locationContact = apiClient.Request(
HttpMethod.Get,
$"location-contacts/{locationContactId}"
);
<?php
$location_contact = $api_client->request(
'GET',
'location-contacts/' . $location_contact_id
);
location_contact = api_client(
'GET',
f'location-contacts/{location_contact_id}'
)
location_contact = api_client.request(
'GET',
"location-contacts/#{location_contact_id}"
)
{
"_id": "6724fbc84f73a2cebf637822",
"account_code": "OCC0003",
"billing_comms_preference": null,
"billing_consolidate_invoices": false,
"billing_enabled": true,
"company_name": "Oxfordshire County Council",
"created": "2024-11-01 16:03:20",
"email": "micheal.frey@oxfordshire.gov.uk",
"email_invoices_to": null,
"first_name": "Michael",
"future_billing_disabled": null,
"has_direct_debit_mandate": null,
"invoices_service_user_id_fields": null,
"job_title": null,
"large_print_requested_for_billing": null,
"last_name": "Frey",
"locations": [
"6724fbc74f73a2cebf6377fa"
],
"mobile": null,
"modified": "2024-11-01 16:03:20",
"multi_location": false,
"next_of_kin": null,
"notes": "Michael is only available 9am-12pm Monday-Wednesday.",
"payment_method": "bac",
"phone": "0345 050 7666",
"postal_address": {
"address_1": "County Hall",
"address_2": "New Road",
"country": "",
"county": "",
"postcode": "OX1 1ND",
"town": "Oxford"
},
"street_address": {
"address_1": "",
"address_2": "",
"country": "",
"county": "",
"postcode": "",
"town": ""
},
"tags": [
"LA"
],
"title": "",
"tradeshift_tenant_id": null,
"website_url": "https://www.oxfordshire.gov.uk",
"work_phone": null
}