GET Api/Test/GetProductById?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Product| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| Category | string |
None. |
|
| Price | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Name": "sample string 2",
"Category": "sample string 3",
"Price": 4.0
}
application/xml, text/xml
Sample:
<Product xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MHCRM.Steinway.WebApi.Models"> <Category>sample string 3</Category> <Id>1</Id> <Name>sample string 2</Name> <Price>4</Price> </Product>