Skip to main content
GET
/
v2
/
payments
/
{userPayment}
Get a payment
curl --request GET \
  --url https://api.gameboost.com/v2/payments/{userPayment} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "type": "bonus",
    "note": "<string>",
    "order_type": "<string>",
    "order_id": 123,
    "amount_eur": "<string>",
    "amount_usd": "<string>",
    "balance_after_eur": "<string>",
    "balance_after_usd": "<string>",
    "is_fine": true,
    "is_warehouse": true,
    "created_at": 123,
    "updated_at": 123
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

userPayment
string
required

The ID of the payment. Can be retrieved from the list of payments.

Response

A single user payment

data
object

User payment transaction record representing balance changes

I