Calculate total price checkout(*)

Calculate the total price of a package at checkout.

post

This method is used to calculate the total price of a package at checkout based on the provided package ID and the request data. It takes into account the wallet used, refund amount, prorate amount, subtotal, tax, and total price to be paid.

Path parameters
packageIdstringRequired

The ID of the package for which the total price is being calculated.

Header parameters
Brand-URLstringRequired

The brand URL of the request. This is used to identify the brand.

Example: YOUR_BRAND_URL
Auth-KeystringRequired

This is used to authenticate the request. If the request is not authenticated, the server will return a 401 Unauthorized response.

Example: YOUR_AUTH_KEY
Body

Represents a request to calculate the total price of a package.

priceIdstring · min: 1Required

The ID of the package to calculate the total price for.

walletIdstring | nullableOptional

The ID of the app integration payment gateway to use for the calculation.

counponCodestring | nullableOptional

The coupon code to apply for the price calculation, if any.

Responses
200
The request was successful.
application/json
post
POST /api/v1/packages/{packageId}/calculate-total-price-checkout HTTP/1.1
Host: protocol.jframework.io
Brand-URL: text
Auth-Key: text
Content-Type: application/json
Accept: */*
Content-Length: 57

{
  "priceId": "text",
  "walletId": "text",
  "counponCode": "text"
}
{
  "success": true,
  "statusCode": 200,
  "message": "The request was successful.",
  "data": {
    "walletUsed": 2,
    "refundAmountWallet": 0,
    "prorateAmount": 10,
    "subtotal": 100,
    "tax": {
      "percent": 0,
      "amount": 0
    },
    "total": 88,
    "currency": "USD"
  },
  "errors": []
}

Last updated

Was this helpful?