Updates
List all Updates
API Reference
Entities
- The entity endpoint
- POSTCreate an Individual
- POSTCreate a Corporation
- PUTUpdate an Entity
- GETRetrieve an Entity
- GETList all Entities
- Connect
- Verification Sessions
- Credit Scores
- Attributes
- Vehicles
- Identities
- Products
- Subscriptions
- Consent
Accounts
- The account endpoint
- POSTCreate an Account
- GETRetrieve an Account
- GETList all Accounts
- Updates
- Transactions
- Card Brand
- Attributes
- Payoffs
- Balances
- Sensitive
- Payment Instruments
- Products
- Subscriptions
- Verification Sessions
- Consent
Payments
Supporting Endpoints
- Merchants
- Webhooks
- Reports
- Simulations (Dev)
- Health Check
Updates
List all Updates
GET
/
accounts
/
{acc_id}
/
updates
curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/updates" \
-H "Method-Version: 2024-04-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
"data": [
{
"id": "upt_NYV5kfjskTTCJ",
"status": "completed",
"account_id": "acc_yVf3mkzbhz9tj",
"source": "direct",
"type": "credit_card",
"data_as_of": "2024-03-20T04:43:21.434Z",
"credit_card": {
"available_credit": 120000,
"balance": 80000,
"closed_at": null,
"credit_limit": 200000,
"interest_rate_percentage_max": 23.5,
"interest_rate_percentage_min": 12.0,
"interest_rate_type": "variable",
"last_payment_amount": 5000,
"last_payment_date": "2024-04-05",
"next_payment_due_date": "2024-05-01",
"next_payment_minimum_amount": 4000,
"opened_at": "2018-10-30",
"sub_type": "flexible_spending",
"usage_pattern": "transactor"
},
"error": null,
"created_at": "2024-03-20T04:43:21.434Z",
"updated_at": "2024-03-20T04:43:21.655Z"
},
{...}
]
}
Retrieve a list of Update objects for a specific Account.
Path Parameters
ID of the Account.
Query Parameters
ISO 8601 formatted date (YYYY-MM-DD) to filter for Updates created on and after the date provided.
ISO 8601 formatted date (YYYY-MM-DD) to filter for Updates 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 Updates to return per page.
Returns
Returns a list of Updates.
curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/updates" \
-H "Method-Version: 2024-04-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
"data": [
{
"id": "upt_NYV5kfjskTTCJ",
"status": "completed",
"account_id": "acc_yVf3mkzbhz9tj",
"source": "direct",
"type": "credit_card",
"data_as_of": "2024-03-20T04:43:21.434Z",
"credit_card": {
"available_credit": 120000,
"balance": 80000,
"closed_at": null,
"credit_limit": 200000,
"interest_rate_percentage_max": 23.5,
"interest_rate_percentage_min": 12.0,
"interest_rate_type": "variable",
"last_payment_amount": 5000,
"last_payment_date": "2024-04-05",
"next_payment_due_date": "2024-05-01",
"next_payment_minimum_amount": 4000,
"opened_at": "2018-10-30",
"sub_type": "flexible_spending",
"usage_pattern": "transactor"
},
"error": null,
"created_at": "2024-03-20T04:43:21.434Z",
"updated_at": "2024-03-20T04:43:21.655Z"
},
{...}
]
}
curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/updates" \
-H "Method-Version: 2024-04-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
"data": [
{
"id": "upt_NYV5kfjskTTCJ",
"status": "completed",
"account_id": "acc_yVf3mkzbhz9tj",
"source": "direct",
"type": "credit_card",
"data_as_of": "2024-03-20T04:43:21.434Z",
"credit_card": {
"available_credit": 120000,
"balance": 80000,
"closed_at": null,
"credit_limit": 200000,
"interest_rate_percentage_max": 23.5,
"interest_rate_percentage_min": 12.0,
"interest_rate_type": "variable",
"last_payment_amount": 5000,
"last_payment_date": "2024-04-05",
"next_payment_due_date": "2024-05-01",
"next_payment_minimum_amount": 4000,
"opened_at": "2018-10-30",
"sub_type": "flexible_spending",
"usage_pattern": "transactor"
},
"error": null,
"created_at": "2024-03-20T04:43:21.434Z",
"updated_at": "2024-03-20T04:43:21.655Z"
},
{...}
]
}