GET api/Product?tranId={tranId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tranId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RevisionModel
NameDescriptionTypeAdditional 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": "33ae56ef-5a1e-4d89-8462-6682f70d1219",
    "ProductId": "6a7d7a72-c839-4bb1-b57c-1e5e0543a2a2",
    "ProductName": "sample string 3",
    "ProviderString": "sample string 4",
    "ReviseDate": "2026-01-01T14:26:22.8335058+02:00",
    "ReviseQuantity": 6,
    "SourceQuantity": 7,
    "IsRevised": true
  },
  {
    "Id": "33ae56ef-5a1e-4d89-8462-6682f70d1219",
    "ProductId": "6a7d7a72-c839-4bb1-b57c-1e5e0543a2a2",
    "ProductName": "sample string 3",
    "ProviderString": "sample string 4",
    "ReviseDate": "2026-01-01T14:26:22.8335058+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>33ae56ef-5a1e-4d89-8462-6682f70d1219</Id>
    <IsRevised>true</IsRevised>
    <ProductId>6a7d7a72-c839-4bb1-b57c-1e5e0543a2a2</ProductId>
    <ProductName>sample string 3</ProductName>
    <ProviderString>sample string 4</ProviderString>
    <ReviseDate>2026-01-01T14:26:22.8335058+02:00</ReviseDate>
    <ReviseQuantity>6</ReviseQuantity>
    <SourceQuantity>7</SourceQuantity>
  </RevisionModel>
  <RevisionModel>
    <Id>33ae56ef-5a1e-4d89-8462-6682f70d1219</Id>
    <IsRevised>true</IsRevised>
    <ProductId>6a7d7a72-c839-4bb1-b57c-1e5e0543a2a2</ProductId>
    <ProductName>sample string 3</ProductName>
    <ProviderString>sample string 4</ProviderString>
    <ReviseDate>2026-01-01T14:26:22.8335058+02:00</ReviseDate>
    <ReviseQuantity>6</ReviseQuantity>
    <SourceQuantity>7</SourceQuantity>
  </RevisionModel>
</ArrayOfRevisionModel>