Skip to main content

Update a verification

This endpoint is to confirm the two amounts (in cents) deposited into the associated ACH account. Only verifications of type micro_deposits are allowed to be updated.
⚠️ Caution: If multiple unsuccessful attempts have been made, the verification will transition into the disabled status. In this case, a new ACH account and verification must be created.

Parameters


An object containing update information for a verification of type micro_deposits.

Required


Two numbers to confirm the amounts (in cents) deposited into the associated ACH account.

Required


Returns


Returns the verification associated with the id.

PUT /accounts/:account_id/verification
curl https://production.methodfi.com/accounts/acc_b9q2XVAnNFbp3/verification \
-X PUT \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc" \
-H "Content-Type: application/json" \
-d '{
"micro_deposits": {
"amounts": [10, 4]
}
}'
RESPONSE
{
"id": "vrf_73TAQ8njUFsLJ",
"status": "verified",
"type": "micro_deposits",
"error": null,
"initiated_at": "2021-10-12T20:42:46.433Z",
"pending_at": "2021-10-14T19:30:42.433Z",
"verified_at": "2021-10-14T20:10:32.834Z",
"disabled_at": "1970-01-01T00:00:00.000Z",
"created_at": "2021-10-12T20:42:46.433Z",
"updated_at": "2021-10-12T20:42:46.433Z"
}