GET api/Yoga

Get list of Yoga details

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Yoga
NameDescriptionTypeAdditional 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:
<ArrayOfYoga xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OTJServices.Models">
  <Yoga>
    <id>3</id>
    <percentage>2</percentage>
    <title>sample string 1</title>
  </Yoga>
  <Yoga>
    <id>3</id>
    <percentage>2</percentage>
    <title>sample string 1</title>
  </Yoga>
</ArrayOfYoga>