Skip to main content
GET
/
clients
/
{id}
cURL
curl --request GET \
  --url https://api.cuddles.care/v1/clients/{id} \
  --header 'Authorization: Bearer <token>'
{
  "firstName": "Hax",
  "lastName": "Nasmi",
  "gender": "Female",
  "dob": "1989-11-30",
  "email": {
    "main": "[email protected]"
  },
  "phone": {
    "home": "+18328156279"
  },
  "location": {
    "streetAddress": "2811 Pecan Ridge Dr",
    "aptSuiteOther": null,
    "city": "Sugar Land",
    "state": "Texas",
    "country": "USA",
    "zip": 77479,
    "neighborhood": "Colony Bend",
    "county": "Fort Bend County",
    "zipSuffix": "1539"
  },
  "geoLocation": {
    "lat": 29.58203099999999,
    "lon": -95.6018993
  },
  "user": {
    "id": "auth0|65608ab617b4bdb50111d600",
    "domain": "3a8T8b1-g"
  },
  "inviteStatus": "Invite Sent",
  "type": "client",
  "id": "266fc897-5cd9-448a-bfc1-c9356c623fb0"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

ID of client to retrieve

Response

Retrieves a single client

The response is of type object.