GET api/Walking/{id}
Get Specific day of Walking details based on parameter passed
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Walking| Name | Description | Type | Additional information |
|---|---|---|---|
| title | string |
None. |
|
| percentage | decimal number |
None. |
|
| id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"title": "sample string 1",
"percentage": 2.0,
"id": 3
}
application/xml, text/xml
Sample:
<Walking xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OTJServices.Models"> <id>3</id> <percentage>2</percentage> <title>sample string 1</title> </Walking>