Get all wallet charges
GET/marketplace/billing/charges
Get all wallet charges
Request
meterId string
Billing Meter ID (you can find this on your app's pricing page on the developer portal)
eventId string
Event ID / Transaction ID
userId string
Filter results by User ID that your server passed via API when the charge was created
startDate string
Filter results AFTER a specific date. Use this in combination with endDate to filter results in a specific time window.
endDate string
Filter results BEFORE a specific date. Use this in combination with startDate to filter results in a specific time window.
skip number
Number of records to skip
limit number
Maximum number of records to return
Returns list of wallet charges
- application/json
- Schema
- Example (auto)
Schema
chargesobject[]
List of wallet charges
countnumberdeprecated
Total number of charges
paginationobject
Pagination metadata for the charges list
{
"charges": [],
"pagination": {
"total": 100,
"skip": 0,
"limit": 10
}
}