GET api/Values/getItemsList/{id}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
id
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "label": "sample string 1",
  "value": 2,
  "tax": 3.1,
  "price": 4.1,
  "Logo": "QEBA",
  "group": 5
}

application/xml, text/xml

Sample:
<Item xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationAPI.Models">
  <Logo>QEBA</Logo>
  <group>5</group>
  <label>sample string 1</label>
  <price>4.1</price>
  <tax>3.1</tax>
  <value>2</value>
</Item>