Difference between revisions of "API clients"

From Charitylog Manual
Jump to: navigation, search
Line 5: Line 5:
 
  [GET] https<nowiki/>://api.dizions.co.uk/v2/clients/type/7
 
  [GET] https<nowiki/>://api.dizions.co.uk/v2/clients/type/7
  
This is just one of many filters available, you can keep adding up to 10 key/value pairs to the URL. The value can usually take multiple values separated by a semi-colon. The following fields can be used as filters:
+
This is just one of many filters available, you can keep adding up to 10 key/value pairs to the URL. The value can usually take multiple values separated by a semi-colon. Filters can be used for getting reporting data, e.g. districts or disabilities, or searching for records, e.g. NHS number or email address. The following fields can be used as filters:
* accommodation
+
 
* active
+
A full list of filters is available at
* age_range
+
[GET] https<nowiki/>://api.dizions.co.uk/v2/clients/filterable_fields
* blue_badge_holder
 
* consent
 
* county
 
* deceased
 
* district
 
* employment_status
 
* ethnicity
 
* external_id
 
* gender
 
* gp_name
 
* gp_surgery
 
* id
 
* main_disability
 
* main_language
 
* marital_status
 
* nhs_number
 
* people_in_household
 
* postcode
 
* preferred_communication_method
 
* registered_disabled
 
* religion
 
* school
 
* sexual_orientation
 
* social_services_number
 
* usual_support_worker
 
  
 
The example below would get all clients that have a religion (org_religion) ID of 1,3 or 10 and an ethnicity (org_ethnic_group) ID of 1.
 
The example below would get all clients that have a religion (org_religion) ID of 1,3 or 10 and an ethnicity (org_ethnic_group) ID of 1.

Revision as of 20:22, 4 March 2025

Go to API overview

The records in the system are divided into types, which can be People types like clients, staff, volunteers, etc, or Organisation types like funders, schools, GP surgeries etc. The clients endpoint can be used to access any People type, e.g. if volunteers are type 7, a list of volunteers can be retrieved using:

[GET] https://api.dizions.co.uk/v2/clients/type/7

This is just one of many filters available, you can keep adding up to 10 key/value pairs to the URL. The value can usually take multiple values separated by a semi-colon. Filters can be used for getting reporting data, e.g. districts or disabilities, or searching for records, e.g. NHS number or email address. The following fields can be used as filters:

A full list of filters is available at

[GET] https://api.dizions.co.uk/v2/clients/filterable_fields

The example below would get all clients that have a religion (org_religion) ID of 1,3 or 10 and an ethnicity (org_ethnic_group) ID of 1.

[GET] https://api.dizions.co.uk/v2/clients/religion/1;3;10/ethnicity/1

The type can be specified when creating records, e.g. if staff are type 8, a new staff record can be created like this:

[POST] https://api.dizions.co.uk/v2/clients
first_name: John
surname: Smith
type: 8

If the type is omitted, the record will be automatically be created with type 1.

These types of people are defined in the dictionary:

[GET] https://api.dizions.co.uk/v2/dictionary/client_type

An important difference with the web application is that it may have Minimum Data Sets defined, e.g. name, email, phone number etc, for creating records. The API deliberately ignores these, as it's assumed the API consumer will define its own. Instead, it just asks for a first_name and surname.