curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/transactions?from_date=2024-03-13&to_date=2024-03-15" \
-X GET \
-H "Method-Version: 2024-04-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
"data": [
{
"id": "txn_bSsDNBnFBsJti",
"account_id": "acc_xHg4lkzbfw8tj",
"merchant": {
"name": "Starbucks",
"descriptor": "STARBUCKS 98101 SEATTLE WA",
"category_code": "5812",
"city": "Seattle",
"state": "WA",
"country": "USA",
},
"network": "visa",
"network_data": {
"visa_merchant_id": "967543210987",
"visa_merchant_name": "Starbucks Store 042",
"visa_store_id": "0042",
"visa_store_name": "Starbucks Pike Place"
},
"amount": 1499,
"currency": "USD",
"billing_amount": 1499,
"billing_currency": "USD",
"status": "cleared",
"created_at": "2024-05-07T15:30:25.467Z",
"updated_at": "2024-05-07T15:30:25.467Z"
},
]
}
Retrieve a list of Transactions objects for a specific Account.
Path Parameters
Query Parameters
ISO 8601 formatted date (YYYY-MM-DD) to filter for Transactions created on and after the date provided.
ISO 8601 formatted date (YYYY-MM-DD) to filter for Transactions created on and before the date provided.
The number of the page to return.
The ID of a resource from which a page should start or end. Mutually exclusive with page
.
The number of Transactions to return per page.
Returns
Returns a list of transactions for the account.
curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/transactions?from_date=2024-03-13&to_date=2024-03-15" \
-X GET \
-H "Method-Version: 2024-04-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
"data": [
{
"id": "txn_bSsDNBnFBsJti",
"account_id": "acc_xHg4lkzbfw8tj",
"merchant": {
"name": "Starbucks",
"descriptor": "STARBUCKS 98101 SEATTLE WA",
"category_code": "5812",
"city": "Seattle",
"state": "WA",
"country": "USA",
},
"network": "visa",
"network_data": {
"visa_merchant_id": "967543210987",
"visa_merchant_name": "Starbucks Store 042",
"visa_store_id": "0042",
"visa_store_name": "Starbucks Pike Place"
},
"amount": 1499,
"currency": "USD",
"billing_amount": 1499,
"billing_currency": "USD",
"status": "cleared",
"created_at": "2024-05-07T15:30:25.467Z",
"updated_at": "2024-05-07T15:30:25.467Z"
},
]
}