GET api/Product/FindById/{id}
Find by id Product
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | No documentation available. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"Description": "sample string 2",
"ExternalKey": "sample string 3",
"DefaultProduct": true,
"Id": 5,
"Inserted": "2026-02-03T23:00:02.9208827-03:00"
}
text/xml
Sample:
<Product xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/System.OneToOne.Common.Model.Entities"> <Id xmlns="http://schemas.datacontract.org/2004/07/System.OneToOne.Common.Model.Core">5</Id> <Inserted xmlns="http://schemas.datacontract.org/2004/07/System.OneToOne.Common.Model.Core">2026-02-03T23:00:02.9208827-03:00</Inserted> <DefaultProduct>true</DefaultProduct> <Description>sample string 2</Description> <ExternalKey>sample string 3</ExternalKey> <Name>sample string 1</Name> </Product>