GET
/
wallets
/
{id}
/
transactions
curl --request GET \
  --url https://api.cloud.flexprice.io/v1/wallets/{id}/transactions \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "amount": 123,
      "created_at": "<string>",
      "credit_amount": 123,
      "credit_balance_after": 123,
      "credit_balance_before": 123,
      "credits_available": 123,
      "description": "<string>",
      "expiry_date": "<string>",
      "id": "<string>",
      "metadata": {},
      "reference_id": "<string>",
      "reference_type": "INVOICE",
      "transaction_reason": "INVOICE_PAYMENT",
      "transaction_status": "pending",
      "type": "<string>",
      "wallet_id": "<string>"
    }
  ],
  "pagination": {
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Authorizations

x-api-key
string
header
required

Enter your API key in the format x-api-key <api-key>*

Path Parameters

id
string
required

Wallet ID

Query Parameters

credits_available_gt
number
end_time
string
expand
string
expiry_date_after
string
expiry_date_before
string
id
string
limit
integer
Required range: 1 <= x <= 1000
offset
integer
Required range: x >= 0
order
enum<string>
Available options:
asc,
desc
reference_id
string
reference_type
string
sort
string
start_time
string
status
enum<string>
Available options:
published,
deleted,
archived
transaction_reason
enum<string>
Available options:
INVOICE_PAYMENT,
FREE_CREDIT_GRANT,
SUBSCRIPTION_CREDIT_GRANT,
PURCHASED_CREDIT_INVOICED,
PURCHASED_CREDIT_DIRECT,
INVOICE_REFUND,
CREDIT_EXPIRED,
WALLET_TERMINATION
transaction_status
enum<string>
Available options:
pending,
completed,
failed
type
enum<string>
Available options:
credit,
debit

Response

200
application/json
OK
items
object[]
pagination
object