GET api/webshop/transactionNumbers

Provides the latest transaction numbers, for all participating shops in the webshop.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of LatestTransactionNumber
NameDescriptionTypeAdditional information
ShopId

The shop id.

integer

None.

TransactionNumber

The latest transaction number. At call time.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ShopId": 1,
    "TransactionNumber": 2
  },
  {
    "ShopId": 1,
    "TransactionNumber": 2
  }
]

application/xml, text/xml

Sample:
<ArrayOfShopTransactionNumberDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PublicAPI.Models">
  <ShopTransactionNumberDTO>
    <ShopId>1</ShopId>
    <TransactionNumber>2</TransactionNumber>
  </ShopTransactionNumberDTO>
  <ShopTransactionNumberDTO>
    <ShopId>1</ShopId>
    <TransactionNumber>2</TransactionNumber>
  </ShopTransactionNumberDTO>
</ArrayOfShopTransactionNumberDTO>