Skip to main content
POST
/
api
/
account-verification
/
ach
/
corporate
Validate corporate ACH account
curl --request POST \
  --url https://api-sandbox.revolv3.com/api/account-verification/ach/corporate \
  --header 'Content-Type: application/json-patch+json' \
  --header 'x-revolv3-token: <api-key>' \
  --data '
{
  "amount": null,
  "firstName": null,
  "lastName": null,
  "companyName": "Company Inc.",
  "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"
  }
}
'
{
  "isVerified": true,
  "message": "Approved",
  "responseCode": "000"
}

Authorizations

x-revolv3-token
string
header
required

Body

address
object
required
ach
object
required
amount
number<double> | null
Required range: 0 <= x <= 10000000
firstName
string | null
Required string length: 2 - 25
Pattern: [A-Za-z]
lastName
string | null
Required string length: 2 - 25
Pattern: [A-Za-z]
companyName
string | null
Maximum string length: 100

Response

The ACH account was successfully verified

isVerified
boolean
message
string | null
responseCode
string | null