PearlPOS
  1. Live Endpoints
PearlPOS
  • Inbound
    • postMasterdata
      POST
    • postPOSdata
      POST
  • Outbound
    • POSlog
      POST
  • Live Endpoints
    • getCustomers
      GET
    • getCustomerOrders
      GET
    • verifyDigitalArticle
      GET
    • purchaseDigitalArticle
      POST
    • getRelatedProducts
      GET
    • getSerialNumberVerification
      GET
    • getAvailableValueCodes
      GET
    • getValueCodes
      GET
  1. Live Endpoints

getCustomerOrders

GET
/getCustomerOrders
This endpoint shall be implemented by the customer system and called by PearlPOS to search for customer orders.

Request

Query Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/getCustomerOrders?CustomerID&CustomerOrderID&BusinessUnitID&ZcustomerIDTypeCode'
Response Response Example
{
    "result": {
        "customerOrder": [
            {
                "customerOrderId": "0005035848",
                "customerOrderTyCo": "ZOR",
                "customerId": "0006520206",
                "isoCurrencyCode": "NOK",
                "customerOrderLnItem": [
                    {
                        "customerOrderLnItmSeqNo": "000010",
                        "customerOrderLnItemTyCo": "ZTAN",
                        "customerOrderProdLnItm": {
                            "itemId": "000000000000221347",
                            "description": "Lamp",
                            "orderedItemQuantity": 1,
                            "saleUnitRetailPriceAmount": 549,
                            "totalRetailPriceAmount": 549
                        },
                        "customerOrderProdPriceMod": []
                    }
                ],
                "customer": {
                    "customer": "0006520206",
                    "country": "",
                    "name": "Customer name",
                    "city": "",
                    "postCode": "",
                    "region": "",
                    "street": "",
                    "phoneNumber": "",
                    "title": "",
                    "email": "",
                    "image": "",
                    "creditAmount": 0,
                    "customerClub": false,
                    "discountReasonCodes": []
                }
            }
        ]
    }
}
Modified at 2025-12-12 08:56:20
Previous
getCustomers
Next
verifyDigitalArticle
Built with