GET api/Products/{id}
No documentation available.
Request Information
Parameters
| Name | Description | Additional 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:
{
"description": "sample string 1",
"price": 2.0,
"productCode": "sample string 3",
"productId": 4,
"productName": "sample string 5",
"releaseDate": "2025-10-29T09:18:00.6426977-07:00",
"hiddenField": "sample string 7",
"id": 8
}
application/xml, text/xml
Sample:
<Product xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPL.LIB.Models"> <Id>8</Id> <Description>sample string 1</Description> <HiddenField>sample string 7</HiddenField> <Price>2</Price> <ProductCode>sample string 3</ProductCode> <ProductId>4</ProductId> <ProductName>sample string 5</ProductName> <ReleaseDate>2025-10-29T09:18:00.6426977-07:00</ReleaseDate> </Product>