Skip to main content
POST
/
bank-accounts
/
{bank_account_id}
/
verify
Verify Bank Account
curl --request POST \
  --url https://api.atlas.co/functions/v1/bank-accounts/{bank_account_id}/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amounts": [
    123
  ]
}
'
{
  "verified": true,
  "attempts_remaining": 123
}

Authorizations

Authorization
string
header
required

API key (sk_test_* or sk_live_*)

Path Parameters

bank_account_id
string
required

Body

application/json
amounts
integer[]
required

Two micro-deposit amounts in cents

Required array length: 2 elements

Response

Verification result

verified
boolean
attempts_remaining
integer