Get a single contact
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"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required
Required range: x > 0
Example:

1

Response

200 - application/json

Object with contact data.

The response is of type object.