Create a micro-deposits verification
Verify an ACH account using micro-deposits. Two small amounts (between $0.01 and $0.30) will be deposited to the associated ACH account. Once the amounts have been deposited (within 1 - 3 business days), the status of the verification will transition from
initiated
to pending
. This is when the account holder can verify the two amounts.Parameters
type
enum
The type of verification.
Possible enum values
micro_deposits
Required
Returns
Returns the verification associated with the id.
- cURL
- Node.js
- Python
POST
/accounts/:account_id/verification
curl https://production.methodfi.com/accounts/acc_b9q2XVAnNFbp3/verification \
-X POST \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc" \
-H "Content-Type: application/json" \
-d '{
"type": "micro_deposits"
}'
POST
/accounts/:account_id/verification
const verification = await method
.accounts('acc_b9q2XVAnNFbp3')
.verification
.create({ type: 'micro_deposits' });
POST
/accounts/:account_id/verification
verification = method
.accounts('acc_b9q2XVAnNFbp3')
.verification
.create({ 'type': 'micro_deposits' })
RESPONSE
{
"id": "vrf_73TAQ8njUFsLJ",
"status": "initiated",
"type": "micro_deposits",
"error": null,
"initiated_at": "2021-10-12T20:42:46.433Z",
"pending_at": "1970-01-01T00:00:00.000Z",
"verified_at": "1970-01-01T00:00:00.000Z",
"disabled_at": "1970-01-01T00:00:00.000Z",
"created_at": "2021-10-12T20:42:46.433Z",
"updated_at": "2021-10-12T20:42:46.433Z"
}