GET api/Products/GetProductById?id={id}

Documentation for 'GetProductById'.

Request Information

Parameters

NameDescriptionAdditional information
id
Documentation for 'id'.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Name": "sample string 2",
  "Price": 3.0,
  "Category": "sample string 4"
}

application/xml, text/xml

Sample:
<Product xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAL">
  <Category>sample string 4</Category>
  <Id>1</Id>
  <Name>sample string 2</Name>
  <Price>3</Price>
</Product>