GET
/
accounts
/
{acc_id}
/
payoffs
curl "https://production.methodfi.com/acc_yVf3mkzbhz9tj/payoffs" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "data": [
    {
      "id": "pyf_vWrK2f6mLrGvA",
      "status": "in_progress",
      "amount": null,
      "term": null,
      "per_diem_amount": null,
      "error": null,
      "created_at": "2024-03-14T01:41:28.434Z",
      "updated_at": "2024-03-14T01:41:28.655Z"
    },
    {
      "id": "pyf_ELGT4hfikTTCJ",
      "status": "completed",
      "amount": 6083988,
      "term": 15,
      "per_diem_amount": null,
      "error": null,
      "created_at": "2024-02-14T01:41:28.434Z",
      "updated_at": "2024-02-14T01:41:28.655Z"
    },
  ]
}

Retrieve a list of Payoff requests for a specific Account.

Path Parameters

acc_id
string
required

ID of the Account.

Query Parameters

from_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Payoffs created on and after the date provided.

to_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Payoffs created on and before the date provided.

page
string

The number of the page to return.

page_cursor
string

The ID of a resource from which a page should start or end. Mutually exclusive with page.

page_limit
string

The number of Payoffs to return per page.

Returns

Returns a list of Payoffs.

curl "https://production.methodfi.com/acc_yVf3mkzbhz9tj/payoffs" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "data": [
    {
      "id": "pyf_vWrK2f6mLrGvA",
      "status": "in_progress",
      "amount": null,
      "term": null,
      "per_diem_amount": null,
      "error": null,
      "created_at": "2024-03-14T01:41:28.434Z",
      "updated_at": "2024-03-14T01:41:28.655Z"
    },
    {
      "id": "pyf_ELGT4hfikTTCJ",
      "status": "completed",
      "amount": 6083988,
      "term": 15,
      "per_diem_amount": null,
      "error": null,
      "created_at": "2024-02-14T01:41:28.434Z",
      "updated_at": "2024-02-14T01:41:28.655Z"
    },
  ]
}