Validate ACH person account
curl --request POST \
  --url https://api.revolv3.com/api/account-verification/ach/person \
  --header 'Content-Type: application/json-patch+json' \
  --data '{
  "amount": null,
  "firstName": "Joe",
  "lastName": "Doe",
  "companyName": null,
  "address": {
    "addressId": null,
    "addressLine1": "26 River Street",
    "addressLine2": "",
    "city": "Cambridge",
    "state": "MA",
    "postalCode": "02125",
    "phoneNumber": "123-456-789",
    "email": null,
    "country": "US"
  },
  "ach": {
    "routingNumber": "123456789",
    "accountNumber": "123456789",
    "accountType": "Checking",
    "processingMethodType": 4
  }
}'
{
  "isVerified": true,
  "message": "Approved",
  "responseCode": "000"
}

Body

Response

The ACH account was successfully verified

The response is of type object.