04-20-2023 07:56 AM
Hi,
Version 1303 of the GetOrders API is no longer giving pagination details in responses.
If we run a query for orders created since 19/1/23, the old API is used (Version 1289 below) and we get the paging information:
<Version>1289</Version>
<Build>E1289_CORE_APIXO_19220561_R1</Build>
<PaginationResult>
<TotalNumberOfPages>47</TotalNumberOfPages>
<TotalNumberOfEntries>4642</TotalNumberOfEntries>
</PaginationResult>
<HasMoreOrders>true</HasMoreOrders>
<OrderArray>
<Order>
<OrderID>27-XXXXX-XXXXX</OrderID>
<OrderStatus>Completed</OrderStatus>
<AdjustmentAmount currencyID="GBP">0.0</AdjustmentAmount>
<AmountPaid currencyID="GBP">7.49</AmountPaid>
If we run a query for orders created since 20/1/23, the new API is used (Version 1303 below) and the paging information is missing:
<Version>1303</Version>
<Build>E1289_CORE_APIXO_19220561_R1</Build>
<OrderArray>
<Order>
<OrderID>27-XXXXX-XXXXX</OrderID>
<OrderStatus>Completed</OrderStatus>
<AdjustmentAmount currencyID="GBP">0.0</AdjustmentAmount>
<AmountPaid currencyID="GBP">7.49</AmountPaid>
Has this been removed in error or is it intentional?
Many thanks,
Neil.