GET
/
entities
/
:ent_id
/
verification_sessions
curl "https://production.methodfi.com/entities/ent_yVf3mkzbhz9tj/verification_sessions" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "success": true,
  "data": [
    {
      "id": "evf_qTNNzCQ63zHJ9",
      "entity_id": "ent_yVf3mkzbhz9tj",
      "status": "verified",
      "type": "identity",
      "method": "kba",
        "kba": {
        "questions": [],
        "authenticated": true
      },
      "error": null,
      "created_at": "2024-04-11T19:23:44.742Z",
      "updated_at": "2024-04-11T19:23:44.742Z"
    },
    {
      "id": "evf_3VT3bHTCnPbrm",
      "entity_id": "ent_yVf3mkzbhz9tj",
      "status": "verified",
      "type": "phone",
      "method": "sms",
      "sms": {
        "timestamp": "2024-04-10T16:42:03.751Z"
      },
      "error": null,
      "created_at": "2024-04-10T16:40:16.283Z",
      "updated_at": "2024-04-10T16:40:16.283Z"
    },
    {...}
  ],
  "message": null
}

Retrieve a list of EntityVerificationSessions for a specific Entity.

Path Parameters

ent_id
string
required

ID of the Entity.

Query Parameters

from_date
string

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

to_date
string

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

Returns

Returns a list of EntityVerificationSessions.

curl "https://production.methodfi.com/entities/ent_yVf3mkzbhz9tj/verification_sessions" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "success": true,
  "data": [
    {
      "id": "evf_qTNNzCQ63zHJ9",
      "entity_id": "ent_yVf3mkzbhz9tj",
      "status": "verified",
      "type": "identity",
      "method": "kba",
        "kba": {
        "questions": [],
        "authenticated": true
      },
      "error": null,
      "created_at": "2024-04-11T19:23:44.742Z",
      "updated_at": "2024-04-11T19:23:44.742Z"
    },
    {
      "id": "evf_3VT3bHTCnPbrm",
      "entity_id": "ent_yVf3mkzbhz9tj",
      "status": "verified",
      "type": "phone",
      "method": "sms",
      "sms": {
        "timestamp": "2024-04-10T16:42:03.751Z"
      },
      "error": null,
      "created_at": "2024-04-10T16:40:16.283Z",
      "updated_at": "2024-04-10T16:40:16.283Z"
    },
    {...}
  ],
  "message": null
}