v1

latestOpenAPI 3.0.02026-07-24126202516.7 KB
Bank Accounts

Verify Penny Amount

When penny verification is enabled, this API call verifies the two penny transactions that were sent to a specified bank account using Send Penny Amount. Note: This API call requires you to provide a front-end interface to your end-users into which they can input the penny amounts required for a successful verification. Your front-end interface should then pass the information into this API call. Penny credit verification is only supported for US platforms.

patch/bank_accounts/{id}/penny_verify

Path parameters

idstring required

Bank account ID

Request body

amount_1integer required

First penny amount in cents. Can range from 1 to 30 cents.

amount_2integer required

Second penny amount in cents. Can range from 1 to 30 cents.

Response

OK

Example response

{
  "bank_accounts": {
    "active": true,
    "id": "46deb476-c1a6-41eb-8eb7-26a695bbe5bc",
    "currency": "AUD",
    "verification_status": "not_verified",
    "bank": {
      "bank_name": "Bank of Australia",
      "country": "AUS",
      "account_name": "Samuel Seller",
      "routing_number": "XXXXX3",
      "account_number": "XXX234",
      "holder_type": "personal",
      "account_type": "checking",
      "direct_debit_authority_status": "approved"
    }
  }
}