Update a verification
This endpoint is to confirm the two amounts (in cents) deposited into the associated ACH account. Only verifications of type
⚠️ Caution: If multiple unsuccessful attempts have been made, the verification will transition into the
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
micro_deposits
object
An object containing update information for a verification of type
micro_deposits
.Required
micro_deposits.amounts
number[]
Two numbers to confirm the amounts (in cents) deposited into the associated ACH account.
Required
Returns
Returns the verification associated with the id.
- cURL
- Node.js
- Python
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]
}
}'
PUT
/accounts/:account_id/verification
const verification = await method
.accounts('acc_b9q2XVAnNFbp3')
.verification
.update({
micro_deposits: {
amounts: [10, 4],
},
});
PUT
/accounts/:account_id/verification
verification = method
.accounts('acc_b9q2XVAnNFbp3')
.verification
.update({
'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"
}