GET api/Product?tranId={tranId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tranId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of RevisionModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| ProductName | string |
None. |
|
| ProviderString | string |
None. |
|
| ReviseDate | date |
None. |
|
| ReviseQuantity | integer |
None. |
|
| SourceQuantity | integer |
None. |
|
| IsRevised | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "c4a42b72-1dd1-4f9c-86d8-516ad462f3cf",
"ProductId": "52f9840f-40b9-4c0a-8838-a170fa2cd8ba",
"ProductName": "sample string 3",
"ProviderString": "sample string 4",
"ReviseDate": "2026-02-16T10:49:05.242946+02:00",
"ReviseQuantity": 6,
"SourceQuantity": 7,
"IsRevised": true
},
{
"Id": "c4a42b72-1dd1-4f9c-86d8-516ad462f3cf",
"ProductId": "52f9840f-40b9-4c0a-8838-a170fa2cd8ba",
"ProductName": "sample string 3",
"ProviderString": "sample string 4",
"ReviseDate": "2026-02-16T10:49:05.242946+02:00",
"ReviseQuantity": 6,
"SourceQuantity": 7,
"IsRevised": true
}
]
application/xml, text/xml
Sample:
<ArrayOfRevisionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRetail.Helpers">
<RevisionModel>
<Id>c4a42b72-1dd1-4f9c-86d8-516ad462f3cf</Id>
<IsRevised>true</IsRevised>
<ProductId>52f9840f-40b9-4c0a-8838-a170fa2cd8ba</ProductId>
<ProductName>sample string 3</ProductName>
<ProviderString>sample string 4</ProviderString>
<ReviseDate>2026-02-16T10:49:05.242946+02:00</ReviseDate>
<ReviseQuantity>6</ReviseQuantity>
<SourceQuantity>7</SourceQuantity>
</RevisionModel>
<RevisionModel>
<Id>c4a42b72-1dd1-4f9c-86d8-516ad462f3cf</Id>
<IsRevised>true</IsRevised>
<ProductId>52f9840f-40b9-4c0a-8838-a170fa2cd8ba</ProductId>
<ProductName>sample string 3</ProductName>
<ProviderString>sample string 4</ProviderString>
<ReviseDate>2026-02-16T10:49:05.242946+02:00</ReviseDate>
<ReviseQuantity>6</ReviseQuantity>
<SourceQuantity>7</SourceQuantity>
</RevisionModel>
</ArrayOfRevisionModel>