List Invoices
Get invoice list fot the current user.
Retrieve a paginated list of your invoices, including details such as the invoice ID, price, invoiced time, and invoice type.
HTTP Request
GET
{API_URL}/users/invoices?limit={limit}&offset={offset}
Parameters
Requirements
Type
Description
limit
Optional
int
The number of records to display per page
offset
Optional
int
The starting point for record retrieval (i.e., how many records to skip before starting to display)
Response Attributes
data dict
dict
invoices: List of user invoices objects.
total_invoices: total records count of user invoices.
status string
string
Indicates the result of the request. success signifies success, while failed indicates an error.
message string
string
A message confirming the successful retrieval of user invoices.
Example
Request
Response
Last updated