Retrieve a verification
Returns the verification associated with an ACH account.
Parameters
No parameters
Returns
Returns the verification associated with the id.
- cURL
- Node.js
- Python
GET
/accounts/:account_id/verification
curl https://production.methodfi.com/accounts/acc_b9q2XVAnNFbp3/verification \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
GET
/accounts/:account_id/verification
const verification = await method
.accounts('acc_b9q2XVAnNFbp3')
.verification
.get();
GET
/accounts/:account_id/verification
verification = method
.accounts('acc_b9q2XVAnNFbp3')
.verification
.get()
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"
}