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