❗️ This endpoint is only for subscriptions using Legacy Statement Billing |
---|
This method will return the full list of transactions for a Site. Pay close attention to filters and pagination in order to control results. Notes about ID/Date Filters
since_id
and/or max_id
is known as creating an “ID Filter”.since_date
and/or until_date
is known as creating a “Date Filter”.since_id
, especially at high values of page.
For example, instead of these successive requests to traverse pagination:
GET /transactions.json?page=1&per_page=200
GET /transactions.json?page=2&per_page=200
It is usually faster to use since_id
to continue fetching from the last ID you observed:
GET /transactions.json?since_id=0&per_page=200&direction=asc
GET /transactions.json?since_id=1567&per_page=200&direction=asc
In the above example, 1567 is derived by adding 1 to the “last” ID you received from the first request.GET /transactions.json
This endpoint requires BasicAuth
OK
application/json
[
{
"transaction": {
"id": 162640678,
"subscription_id": 15268262,
"type": "Payment",
"kind": null,
"transaction_type": "payment",
"success": true,
"amount_in_cents": 1000,
"memo": "Pookie Test - $10 Basic Plan: Renewal payment",
"created_at": "2016-11-17T14:03:14-05:00",
"starting_balance_in_cents": 1000,
"ending_balance_in_cents": 0,
"gateway_used": "bogus",
"gateway_transaction_id": "53433",
"gateway_order_id": null,
"payment_id": null,
"product_id": 3792003,
"tax_id": null,
"component_id": null,
"statement_id": 80669157,
"customer_id": 14743839,
"item_name": null,
"parent_id": null,
"role": null,
"card_number": "XXXX-XXXX-XXXX-1",
"card_expiration": "10/2020",
"card_type": "bogus",
"refunded_amount_in_cents": 0
}
},
{
"transaction": {
"id": 162640676,
"subscription_id": 15268319,
"type": "Payment",
"kind": null,
"transaction_type": "payment",
"success": true,
"amount_in_cents": 2000,
"memo": "Pookie Test - $10 Basic Plan: Renewal payment",
"created_at": "2016-11-17T14:03:14-05:00",
"starting_balance_in_cents": 2000,
"ending_balance_in_cents": 0,
"gateway_used": "bogus",
"gateway_transaction_id": "53433",
"gateway_order_id": null,
"payment_id": null,
"product_id": 3792003,
"tax_id": null,
"component_id": null,
"statement_id": 80669162,
"customer_id": 14743895,
"item_name": null,
"parent_id": null,
"role": null,
"card_number": "XXXX-XXXX-XXXX-1",
"card_expiration": "10/2020",
"card_type": "bogus",
"refunded_amount_in_cents": 0
}
}
]
curl -X GET -G \
--url 'https://subdomain.chargify.com/transactions.json' \
-H 'Accept: application/json' \
-d 'per_page=20' \
-d 'direction=desc'