POST
/
accounts
/
{acc_id}
/
verification_sessions
curl https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/verification_sessions \
  -X POST \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "micro_deposits"
  }'
{
  "id": "avf_bxDxWqdnRcrer",
  "account_id": "acc_yVf3mkzbhz9tj",
  "status": "pending",
  "error": null,
  "type": "micro_deposits",
  "micro_deposits": {
    "amounts": []
  },
  "created_at": "2024-03-29T21:32:54.452Z",
  "updated_at": "2024-03-29T21:32:54.452Z"
}

Creates an AccountVerificationSession of the provided type.

Path Parameters

acc_id
string
required

ID of the Account.

Body

type
enum
required

The type of AccountVerificationSession to create. See Verification Types.

Returns

Returns an AccountVerificationSession object.

curl https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/verification_sessions \
  -X POST \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "micro_deposits"
  }'
{
  "id": "avf_bxDxWqdnRcrer",
  "account_id": "acc_yVf3mkzbhz9tj",
  "status": "pending",
  "error": null,
  "type": "micro_deposits",
  "micro_deposits": {
    "amounts": []
  },
  "created_at": "2024-03-29T21:32:54.452Z",
  "updated_at": "2024-03-29T21:32:54.452Z"
}