Difference between revisions of "API clients"

From Charitylog Manual
Jump to: navigation, search
Line 3: Line 3:
 
The records in the system are devided 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:
 
The records in the system are devided 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<nowiki/>://api.dizions.co.uk/v2/clients/type/7
+
  [GET] https<nowiki/>://api.dizions.co.uk/v2/client/type/7
  
 
The type can be specified when creating records, e.g. if staff are type 8, a new staff record can be created like this:
 
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<nowiki/>://api.dizions.co.uk/v2/clients
+
  [POST] https<nowiki/>://api.dizions.co.uk/v2/client
 
  first_name: John
 
  first_name: John
 
  surname: Smith
 
  surname: Smith

Revision as of 13:23, 24 February 2022

Go to API overview

The records in the system are devided 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/client/type/7

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/client
first_name: John
surname: Smith
type: 8

If the type is ommitted, 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