cURL
curl --request GET \ --url https://partner-api.getoliver.com/services/core/open_api/v1/clients \ --header 'Authorization: Bearer <token>' \ --header 'X-Client-Id: <x-client-id>'
{ "success": true, "data": [ { "id": "<string>", "name": "<string>", "email": "<string>", "phone": "<string>", "patients": [ { "id": "<string>", "name": "<string>", "client_id": "<string>", "species": "<string>", "breed": "<string>" } ], "remote_id": "<string>" } ], "message": "<string>" }
List clients using filters
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The location id of the practice
Filter clients by name
Filter clients by email
Filter clients by phone
List of clients found
Show child attributes
The ID of the client
The name of the client
The email address of the client
The phone number of the client
List of patients associated with this client
The ID of the patient
The name of the patient
The ID of the client that owns this patient
The species of the patient
The breed of the patient
The ID of the client in the remote system it was imported from, if available