Wallets
Get wallet transactions
API documentation
Integrations
Analytics
Billable events
Companies
Custom properties
Customers
Customers > Credits
Customers > Payment methods
Integrations
Invoices
Invoicing entities
Organisations
Payments
Price configurations
Quotes
Subscriptions
- GETGet subscriptions
- GETGet subscription
- GETGet subscription phases
- GETGet subscription phase
- POSTCreate subscription update
- POSTCreate subscription updates
- POSTCreate subscription
- PUTUpdate subscription
- POSTActivate subscription
- POSTCancel subscription
- POSTPause subscription
- POSTReactivate subscription
- POSTRefresh seat products
- POSTRefresh subscriptions
- POSTReinstate subscription
- POSTTransition subscription to next phase
Third-party apps
Wallets
Wallets
Get wallet transactions
Retrieve all transactions of an existing wallet.
GET
/
v1
/
wallets
/
{id}
/
transactions
curl --request GET \
--url https://api.hyperline.co/v1/wallets/{id}/transactions \
--header 'Authorization: Bearer <token>'
{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0
},
"data": [
{
"id": "walt_FCihRDLYhKpSpL",
"type": "credit_paid",
"amount": 12000,
"invoice_id": "<string>",
"created_at": "2024-12-20T16:04:11Z"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Query Parameters
Required range:
0 <= x <= 100
Required range:
x >= 0
Response
200 - application/json
Paginated list of wallet transactions
List of WalletTransaction.
Wallet transaction ID.
Example:
"walt_FCihRDLYhKpSpL"
Wallet transaction type.
Available options:
credit_free
, credit_paid
, debit
Example:
"credit_paid"
Amount of the wallet transaction.
Example:
12000
Generated invoice ID for the transaction. Only applies for credit_paid
and debit
.
Was this page helpful?
curl --request GET \
--url https://api.hyperline.co/v1/wallets/{id}/transactions \
--header 'Authorization: Bearer <token>'
{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0
},
"data": [
{
"id": "walt_FCihRDLYhKpSpL",
"type": "credit_paid",
"amount": 12000,
"invoice_id": "<string>",
"created_at": "2024-12-20T16:04:11Z"
}
]
}