Set Up Enterprise Account In Sandbox

Overview

Before simulating transfers in Deliver’s sandbox, you must create an external account with dummy information and link it to your enterprise ID.

Create Your Sandbox External Account

Use the External Accounts endpoint.

This external account will only be used for sandbox testing, so you can pass dummy information instead of passing real account information.

  • Generate a unique id for the account and pass it in account_reference_id
  • Set customer_reference_id to your enterprise id, which you can see on the Portal's homepage (ex: My Company would have an enterprise id of mycompany)
  • Set customer_resource_type to "enterprise"
curl --request POST \
     --url https://api-sandbox.orum.io/deliver/external/accounts \
     --header 'Accept: application/json' \
     --header 'Authorization: Bearer {auth_token} ' \
     --header 'Content-Type: application/json' \
     --header 'Orum-Version: v2022-09-21' \
     --header 'X-API-Key: {SANDBOX API KEY} ' \
     --data '
{
     "account_reference_id": "7dqf9d88-92ydalme",
     "customer_reference_id": "mycompany",
     "customer_resource_type": "enterprise",
     "account_type": "checking",
     "account_number": "2391092239471",
     "routing_number": "012345678",
     "account_holder_name": "my company"
}
'