GET
/
accounts
/
:acc_id
/
verification_sessions
curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/verification_sessions" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "success": true,
  "data": [
    {
      "id": "avf_DjkdemgTQfqRD",
      "status": "pending",
      "error": null,
      "type": "pre_auth",
      "pre_auth": {
          "exp_year": "xxxx",
          "exp_month": "xx",
          "exp_check": null,
          "cvv": null,
          "cvv_check": null,
          "billing_zip_code": "xxxxx",
          "billing_zip_code_check": null,
          "number": "xxxxxxxxxxxxxxxx",
          "pre_auth_check": null
      },
      "created_at": "2024-03-14T02:02:24.862Z",
      "updated_at": "2024-03-14T02:02:24.862Z"
    },
    {...}
  ],
  "message": null
}

Retrieve a list of AccountVerificationSessions 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 AccountVerificationSessions created on and after the date provided.

to_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for AccountVerificationSessions 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 AccountVerificationSessions to return per page.

Returns

Returns a list of AccountVerificationSession.

curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/verification_sessions" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "success": true,
  "data": [
    {
      "id": "avf_DjkdemgTQfqRD",
      "status": "pending",
      "error": null,
      "type": "pre_auth",
      "pre_auth": {
          "exp_year": "xxxx",
          "exp_month": "xx",
          "exp_check": null,
          "cvv": null,
          "cvv_check": null,
          "billing_zip_code": "xxxxx",
          "billing_zip_code_check": null,
          "number": "xxxxxxxxxxxxxxxx",
          "pre_auth_check": null
      },
      "created_at": "2024-03-14T02:02:24.862Z",
      "updated_at": "2024-03-14T02:02:24.862Z"
    },
    {...}
  ],
  "message": null
}