Skip to main content
POST
/
v1
/
balance_transactions
Create
curl --request POST \
  --url https://{defaultHost}/v1/balance_transactions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "balance_transaction": {
    "amount": 5000,
    "currency": "usd",
    "customer": "f38e0f9e-7aad-46de-ad80-f0ae3b2cec18"
  }
}
'
{
  "id": "a9017703-1c87-45a2-8598-a84cdf098d15",
  "object": "balance_transaction",
  "amount": 5000,
  "currency": "usd",
  "ending_balance_amount": 5000,
  "transaction_type": "adjustment",
  "balance": "1f6a6f5f-5bcd-4f3d-ad6d-0c3b3a5e6fdc",
  "customer": "f38e0f9e-7aad-46de-ad80-f0ae3b2cec18",
  "checkout": null,
  "created_at": 1780335050,
  "updated_at": 1780335050
}

Documentation Index

Fetch the complete documentation index at: https://developer.surecart.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
balance_transaction
object

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

amount
integer

The amount of the transaction. A negative value is a credit for the customer’s balance, and a positive value is a debit to the customer’s balance.

currency
string

Three-letter ISO currency code, in lowercase.

balance

Expandable – The associated balance ID.

customer

Expandable – The associated customer ID.

ending_balance_amount
integer

The balance amount after the transaction was applied.

checkout

Expandable – The associated checkout ID.

transaction_type
string

One of either adjustment, applied_to_checkout, checkout_below_currency_minimum, or checkout_credit. Balance transactions created through the API are always adjustment transactions.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.