GET api/Product/GetRevisionTransaction?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": "4b983eab-c622-41fa-8b1c-1f84da6a6ec4",
"ProductId": "e7740f7b-ce43-4b0d-abe0-3df3c268605b",
"ProductName": "sample string 3",
"ProviderString": "sample string 4",
"ReviseDate": "2026-09-27T13:36:31.6682066+03:00",
"ReviseQuantity": 6,
"SourceQuantity": 7,
"IsRevised": true
},
{
"Id": "4b983eab-c622-41fa-8b1c-1f84da6a6ec4",
"ProductId": "e7740f7b-ce43-4b0d-abe0-3df3c268605b",
"ProductName": "sample string 3",
"ProviderString": "sample string 4",
"ReviseDate": "2026-09-27T13:36:31.6682066+03: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>4b983eab-c622-41fa-8b1c-1f84da6a6ec4</Id>
<IsRevised>true</IsRevised>
<ProductId>e7740f7b-ce43-4b0d-abe0-3df3c268605b</ProductId>
<ProductName>sample string 3</ProductName>
<ProviderString>sample string 4</ProviderString>
<ReviseDate>2026-09-27T13:36:31.6682066+03:00</ReviseDate>
<ReviseQuantity>6</ReviseQuantity>
<SourceQuantity>7</SourceQuantity>
</RevisionModel>
<RevisionModel>
<Id>4b983eab-c622-41fa-8b1c-1f84da6a6ec4</Id>
<IsRevised>true</IsRevised>
<ProductId>e7740f7b-ce43-4b0d-abe0-3df3c268605b</ProductId>
<ProductName>sample string 3</ProductName>
<ProviderString>sample string 4</ProviderString>
<ReviseDate>2026-09-27T13:36:31.6682066+03:00</ReviseDate>
<ReviseQuantity>6</ReviseQuantity>
<SourceQuantity>7</SourceQuantity>
</RevisionModel>
</ArrayOfRevisionModel>