Skip to content

Query Order

BETA functionality

You can query for the result and status of a single transaction or for the order and all transactions included.

CURL
curl -X GET \
  https://rest.payments.worldline.com/v2/merchants/1262899477/orders/exampleorder1 \
  -H 'Accept: application/json'
REST API
GET /v2/merchants/1262899477/orders/exampleorder1 HTTP/1.1
Host: rest.payments.worldline.com
Accept: application/json
Web Service
<QueryOrderRequest>
    <OrderInfo>
        <OrderId>exampleorder1</OrderId>
    </OrderInfo>
    <MerchantInfo>
        <MerchantId>1108852714</MerchantId>
    </MerchantInfo>
    <RetrieveTransactions>false</RetrieveTransactions>
</QueryOrderRequest>
Back to top