Update a Checkout

Update a dynamic checkout page for integration into your service.

PATCH /checkout/update/{checkoutCode}

Headers

Name
Value

Content-Type

application/json

Accept

application/json

X-TX-AppId

YOUR-APP-ID

X-TX-Signature

HMAC SHA-256 content hash View

URL Params

Name
Type
Description
Required

{checkoutCode}

string

The unique identifier for the transaction to update.

Required

Body

{
  "name": "checkout",
  "pricing": "118.95",
  "pricingCurrency": {
    "currencyId": 201,
    "symbol": "USDT",         // Optional
    "chainName": "Ethereum",  // Equivalent to ETH, case-insensitive
    "currencyType": "CRYPTO"
  },
  "receiveCurrency": [
    {
      "currencyId": 201,
c      "symbol": "USDT",        // Optional
      "chainName": "Ethereum",  // Equivalent to ETH, case-insensitive
    },
    {
      "currencyId": 202,
      "symbol": "USDC",
      "chainName": "Ethereum"
    }
  ],
  "recipients": [
    "0x5FbE74A283f7954f10AA04C2eDf55578811aeb03"
  ],
  "redirectUrl": "https://ok.my-service-domain",
  "backToUrl": "https://order.my-service-domain"
}

Request

Response

Last updated