weight

Post a new weight entry

post/patients/{patient_id}/weights

Path parameters

patient_idinteger required

Request body

notestring nullable

note that can be added to provide additional description Max 1024 char

weight_datestring required

calendar date in format YYYY-MM-DD

weight_kgnumber float required

weight in kilograms

weight_timestring required

time in HH:MM:SS

Example request

{
  "weight_date": "2025-12-18",
  "weight_kg": 68.4,
  "weight_time": "07:32:10"
}

Response

successful operation

idinteger required
notestring nullable

note that can be added to provide additional description Max 1024 char

source'healthkit' | 'healthconnect' nullable

source of weight data

source_idstring nullable

id of weight from source

weight_datestring nullable required

calendar date in format YYYY-MM-DD

weight_kgnumber float required

weight in kilograms

weight_timestring nullable required

time in HH:MM:SS

Example response

{
  "source": "healthconnect",
  "source_id": "12345678-90ab-cdef-1234-567890abcdef",
  "weight_date": "2025-12-18",
  "weight_kg": 68.4,
  "weight_time": "07:32:10"
}

Changes