cURL
curl --request GET \ --url https://api.splose.com/v1/contacts/{id} \ --header 'Authorization: Bearer <token>'
{ "id": 1, "type": "Standard", "name": "Plan Manager", "title": "Mr.", "firstName": "Harry", "lastName": "Potter", "preferredName": "Harry", "profession": "Contractor", "companyName": "splose", "providerNumber": "12345678", "doctorType": "GP", "associatedPatientIds": [ 123 ], "associatedInvoiceIds": [ 123 ], "associatedCaseIds": [ 123 ], "email": "harry@hogwarts.edu", "addressL1": "123 King William Street", "addressL2": "", "addressL3": "", "suburb": "Adelaide", "state": "SA", "postalCode": "5000", "country": "Australia", "phoneNumbers": [ { "type": "Mobile", "code": "+61", "phoneNumber": "401234567" } ], "archived": false, "createdAt": "2023-07-30T09:00:00.000Z", "updatedAt": "2023-07-30T09:00:00.000Z" }
Get contact data by id
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
x > 0
1
Object with contact data.
The response is of type object.
object