Auth API
- How to authenticate
Deliver API
- Persons
- Businesses
- External Accounts
- Cards
- Transfers
- Schedules
- Eligibility
- Transfer Groups
- Balance
- Reports
Verify API
Webhooks API
- Overview And Set Up
- Event Types and Payloads
- Configure webhooks
- Trigger webhooks
- Secure webhooks
Verify API
Post Verify Accounts
Request account verification.
POST
/
verify
/
accounts
curl --request POST \
--url https://api-sandbox.orum.io/verify/accounts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Orum-Version: <orum-version>' \
--data '{
"type": "status",
"account_number": 101044595,
"routing_number": 21000021,
"account_holder_name": "John Doe",
"email": "[email protected]",
"person": {
"first_name": "John",
"last_name": "Doe",
"phone_number": "+12125551212",
"ssn": "123121234"
},
"business": {
"business_name": "Acme",
"tax_id": "123456789",
"phone_number": "+11234567890"
},
"sender_name": "Acme"
}'
{
"account": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"account_number": "<string>",
"routing_number": "<string>",
"account_holder_name": "<string>",
"email": "[email protected]",
"verification_status": "pending",
"status_reason": "blocked_account",
"ownership_status": "pending",
"person": {
"first_name": "<string>",
"last_name": "<string>",
"phone_number": "<string>",
"first_name_match": "match",
"last_name_match": "match",
"phone_number_match": "match",
"ssn_match": "match"
},
"business": {
"business_name": "<string>",
"phone_number": "<string>",
"business_name_match": "match",
"phone_number_match": "match",
"tax_id_match": "match"
},
"control_status": "pending",
"debit_status": "pending",
"debit_status_reason": "blocked_account",
"estimated_verification_date": "2023-07-13T00:00:00.000Z",
"sender_name": "<string>"
}
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Headers
Version of Deliver API. Use v2022-09-21.
Available options:
v2022-09-21
Body
application/json
Response
200
application/json
200 response.
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api-sandbox.orum.io/verify/accounts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Orum-Version: <orum-version>' \
--data '{
"type": "status",
"account_number": 101044595,
"routing_number": 21000021,
"account_holder_name": "John Doe",
"email": "[email protected]",
"person": {
"first_name": "John",
"last_name": "Doe",
"phone_number": "+12125551212",
"ssn": "123121234"
},
"business": {
"business_name": "Acme",
"tax_id": "123456789",
"phone_number": "+11234567890"
},
"sender_name": "Acme"
}'
{
"account": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"account_number": "<string>",
"routing_number": "<string>",
"account_holder_name": "<string>",
"email": "[email protected]",
"verification_status": "pending",
"status_reason": "blocked_account",
"ownership_status": "pending",
"person": {
"first_name": "<string>",
"last_name": "<string>",
"phone_number": "<string>",
"first_name_match": "match",
"last_name_match": "match",
"phone_number_match": "match",
"ssn_match": "match"
},
"business": {
"business_name": "<string>",
"phone_number": "<string>",
"business_name_match": "match",
"phone_number_match": "match",
"tax_id_match": "match"
},
"control_status": "pending",
"debit_status": "pending",
"debit_status_reason": "blocked_account",
"estimated_verification_date": "2023-07-13T00:00:00.000Z",
"sender_name": "<string>"
}
}