Skip to main content

Unified Checkout Intent Object

transaction_idinteger<int32>

The transaction id.

gateway_uuidstring

The universally unique ID (UUID) that represents a unique transaction with the payment gateway.

Example: 123e4567-e89b-12d3-a456-426614174000
gross_amountinteger<int32>

The gross amount of the purchase in the lowest denomination of currency.

net_amountinteger<int32>

The net amount of the purchase in the lowest denomination of currency.

platform_feeinteger<int32>

The platform fee of the purchase in the lowest denomination of currency.

gateway_feeinteger<int32>

The gateway fee of the purchase in the lowest denomination of currency.

taxinteger<int32>

The tax amount of the purchase in cents.

tax_typestring

The tax type.

transaction_typestring

The state of the transaction that was processed. E.g. CANCELLED, CLEARED, FAILED, PAID, PENDING, REFUNDED.

meta object[]

A metadata array of objects returned from the transaction.

  • Array [
  • token_pack_idinteger

    Token Pack ID.

    Example: 1234
    token_pack_namestring

    Name of the token pack.

    Example: 100 Coins
    game_idinteger

    Game ID.

    Example: 4567
    game_namestring

    Name of the game.

    Example: my game
    buyer_idinteger

    Buyer ID.

    Example: 8910
    buyer_namestring

    Name of the buyer.

    Example: buyers name
    token_namestring

    Name of the token.

    Example: token name
  • ]
  • purchase_dateinteger<int32>

    The time of the purchase.

    Unified Checkout Intent Object
    {
    "transaction_id": 0,
    "gateway_uuid": "123e4567-e89b-12d3-a456-426614174000",
    "gross_amount": 0,
    "net_amount": 0,
    "platform_fee": 0,
    "gateway_fee": 0,
    "tax": 0,
    "tax_type": "string",
    "transaction_type": "string",
    "meta": [
    {
    "token_pack_id": 1234,
    "token_pack_name": "100 Coins",
    "game_id": 4567,
    "game_name": "my game",
    "buyer_id": 8910,
    "buyer_name": "buyers name",
    "token_name": "token name"
    }
    ],
    "purchase_date": 0
    }