Skip to main content
GET
/
accounts
/
{acc_id}
/
verification_sessions
curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/verification_sessions" \
  -H "Method-Version: 2025-07-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

Query Parameters

Returns

Returns a list of AccountVerificationSession.
curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/verification_sessions" \
  -H "Method-Version: 2025-07-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
}