get transactions on the account
Use this method to get a paginated list of financial transactions on the account.
This endpoint requires authentication.
GET /billing/transactions
Name | Description |
---|---|
from_date Query Required | String Specify the start date of your search time range in the |
to_date Query Required | String Specify the end date of your search time range in the |
type Query | Filter results by transaction type. |
details_contains Query | String Filter results by transaction comment. |
payments Query | Boolean Get a list of account top ups only. |
page Query | Number Requested page. |
per_page Query | Number Number of records per page. |
curl -X GET -G \
--url 'https://api.wavix.com/v1/billing/transactions' \
-H 'Accept: application/json' \
-d 'appid=appid' \
-d 'from_date=2022-03-01T00%3A00%3A00.000Z' \
-d 'to_date=2022-03-11T00%3A00%3A00.000Z'