GET api/HeightAndWeights

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of HeightAndWeight
NameDescriptionTypeAdditional information
HeightAndWeightId

integer

None.

studyID

string

Required

ParticipantID

string

None.

Height

decimal number

None.

Weight

decimal number

None.

DateTime

date

None.

Response 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:19:29.7051724-08:00"
  },
  {
    "HeightAndWeightId": 1,
    "studyID": "sample string 2",
    "ParticipantID": "sample string 3",
    "Height": 4.1,
    "Weight": 5.1,
    "DateTime": "2025-12-21T23:19:29.7051724-08:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfHeightAndWeight xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/diabetesAppService.Models">
  <HeightAndWeight>
    <DateTime>2025-12-21T23:19:29.7051724-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>
  <HeightAndWeight>
    <DateTime>2025-12-21T23:19:29.7051724-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>
</ArrayOfHeightAndWeight>