PUT api/HeightAndWeights/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
HeightAndWeight| Name | Description | Type | Additional information |
|---|---|---|---|
| HeightAndWeightId | integer |
None. |
|
| studyID | string |
Required |
|
| ParticipantID | string |
None. |
|
| Height | decimal number |
None. |
|
| Weight | decimal number |
None. |
|
| DateTime | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"HeightAndWeightId": 1,
"studyID": "sample string 2",
"ParticipantID": "sample string 3",
"Height": 4.1,
"Weight": 5.1,
"DateTime": "2025-12-21T23:21:45.9639438-08:00"
}
application/xml, text/xml
Sample:
<HeightAndWeight xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/diabetesAppService.Models"> <DateTime>2025-12-21T23:21:45.9639438-08:00</DateTime> <Height>4.1</Height> <HeightAndWeightId>1</HeightAndWeightId> <ParticipantID>sample string 3</ParticipantID> <Weight>5.1</Weight> <studyID>sample string 2</studyID> </HeightAndWeight>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.