GET Health/BMI?apiKey={apiKey}&Height={Height}&Weight={Weight}&WeightUnit={WeightUnit}&HeightUnit={HeightUnit}
Documentation for 'BMI'.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| apiKey | Documentation for 'apiKey'. |
Define this parameter in the request URI. |
| Height | Documentation for 'Height'. |
Define this parameter in the request URI. |
| Weight | Documentation for 'Weight'. |
Define this parameter in the request URI. |
| WeightUnit | Documentation for 'WeightUnit'. |
Define this parameter in the request URI. |
| HeightUnit | Documentation for 'HeightUnit'. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Validation": {
"isSuccess": true,
"Message": "sample string 2"
},
"BMI": 1.1,
"HealthyRange": {
"Low": 1.1,
"High": 2.1
}
}
application/xml, text/xml
Sample:
<dtoBMI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCModel">
<BMI>1.1</BMI>
<HealthyRange>
<High>2.1</High>
<Low>1.1</Low>
</HealthyRange>
<Validation>
<Message>sample string 2</Message>
<isSuccess>true</isSuccess>
</Validation>
</dtoBMI>