GET api/Walking
Get list of Walking details
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of WalkingName | 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 }, { "title": "sample string 1", "percentage": 2.0, "id": 3 } ]
application/xml, text/xml
Sample:
<ArrayOfWalking xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OTJServices.Models"> <Walking> <id>3</id> <percentage>2</percentage> <title>sample string 1</title> </Walking> <Walking> <id>3</id> <percentage>2</percentage> <title>sample string 1</title> </Walking> </ArrayOfWalking>