POST
/
entities
/
{ent_id}
/
verification_sessions
curl https://production.methodfi.com/entities/ent_au22b1fbFJbp8/verification_sessions \
  -X POST \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
  -H "Content-Type: application/json" \
  -d '{
    "type": "phone",
    "method": "sna",
    "sna": {}
  }'
{
  "id": "evf_qTNNzCQ63zHJ9",
  "entity_id": "ent_au22b1fbFJbp8",
  "status": "in_progress",
  "type": "phone",
  "method": "sna",
  "sna": {
    "urls": [
      "https://production.methodfi.com/sna/evf_qTNNzCQ63zHJ9/sna_vrf_yAJRRk8djWLc8",
      "https://production.methodfi.com/sna/evf_qTNNzCQ63zHJ9/sna_vrf_8AhxN68kpkHmL"
    ]
  },
  "error": null,
  "created_at": "2024-04-10T22:15:56.091Z",
  "updated_at": "2024-04-10T22:15:56.091Z"
}
Creates a new for an entity to verify their phone via Method’s SNA verification process. This starts the verification process by sending a list of URLs in the response. The URLs should be opened (via background XHR or mobile browser) from the Entity’s device matching the phone number provided.

Path Parameters

ent_id
string
The ID of the Entity.

Body

type
enum
required
The EntityVerificationSession will be verifying the entity's phone. Must be phone
method
enum
required
The EntityVerificationSession will be using Method's SNA verification process. Must be sna
sna
object
required
The SNA verification configuration.

Returns

Returns an object.
curl https://production.methodfi.com/entities/ent_au22b1fbFJbp8/verification_sessions \
  -X POST \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
  -H "Content-Type: application/json" \
  -d '{
    "type": "phone",
    "method": "sna",
    "sna": {}
  }'
{
  "id": "evf_qTNNzCQ63zHJ9",
  "entity_id": "ent_au22b1fbFJbp8",
  "status": "in_progress",
  "type": "phone",
  "method": "sna",
  "sna": {
    "urls": [
      "https://production.methodfi.com/sna/evf_qTNNzCQ63zHJ9/sna_vrf_yAJRRk8djWLc8",
      "https://production.methodfi.com/sna/evf_qTNNzCQ63zHJ9/sna_vrf_8AhxN68kpkHmL"
    ]
  },
  "error": null,
  "created_at": "2024-04-10T22:15:56.091Z",
  "updated_at": "2024-04-10T22:15:56.091Z"
}