Skip to main content
GET
/
api
/
credits
/
transactions
Get credit transaction history for current organization
curl --request GET \
  --url http://localhost:3000/api/credits/transactions \
  --header 'Authorization: Bearer <token>'

Authorizations

Authorization
string
header
required

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

Query Parameters

page
number
default:1

Page number (1-based)

Required range: x >= 1
Example:

1

limit
number
default:20

Number of items per page

Required range: 1 <= x <= 100
Example:

20

startDate
string

Filter from date (ISO string)

endDate
string

Filter to date (ISO string)

Response

200 - undefined