1.Retrieve Shipping Cost

You can check the shipping cost for the payment's product. You should transmit the shipping information to PayWall during or after the payment request.

View Product Shipping Cost

GET {{PaymentBaseAddress}}/api/paywall/product/cargocost

Important: In order to use the Retrieve Shipping Cost service, you need to send the 'apikeyprivate' and 'apiclientprivate' parameters in the 'Header' field.

PaymentAPI Address

The response returned from the service:

{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": {
        "Id": 466721,
        "CurrencyId": 1,
        "CargoOwnerType": 1,
        "CargoCost": 120.00
    }
}

Last updated