Go Live
Move onboarding from sandbox to production: complete the pre-production checklist, get production credentials, and board your first live business.
When your integration works end to end in the sandbox, you're ready to go live. Going live means completing the pre-production checklist, switching to production credentials and the production host, and boarding your first real business.
Before you go live
- You've created a business, completed its requirements, and driven it to
ACTIVEin the sandbox. - You've exercised the failure paths: a KYB rejection and a duplicate
externalId, and you resolve each from the response. - You set a unique
externalIdon every create and rely on it for safe retries. See Idempotent Requests. - You read a business back to track status; you do not depend on webhooks (there are none).
- You store each returned
id(bus_,own_,ba_,loc_, and the rest) and your ownexternalIdfor reconciliation. - Every owner and signer has a primary ID (SSN or ITIN) plus a secondary government ID, and exactly one is the control person.
Switch to production
Point your integration at the production host and send your production x-api-key:
curl -X POST https://api.prioritycommerce.com/v1/businesses \
-H "x-api-key: <your-production-key>" \
-H "Content-Type: application/json" \
-d '{ "externalId": "live-merchant-001", "legalName": "Downtown Coffee LLC" }'The sandbox host is https://sandbox-api.prioritycommerce.com; production is https://api.prioritycommerce.com. The request and response shapes are identical; only the host and credentials change.
PENDING-PUBLISHThe production-credential process (how a partner requests production access and the approval steps before the first live business) is pending the boarding go-live guide. Confirm the exact steps and any approval gates before publish.
Board your first live business
- Create the business and its owners, bank account, address, and location on the production host.
- Enable Accept Payments and read the business back to confirm
missingFieldsandmissingDocumentsare empty. - Submit for underwriting and track the business to
ACTIVEby re-reading it. - Once the service is
ACTIVE, the business can begin accepting payments.
See also
- Sandbox testing: validate the full flow before you go live
- Create a business: the composite create you'll run in production
- Status lifecycle: how a business reaches
ACTIVE - Getting Started: access, what onboarding supports, and your first call
Updated about 10 hours ago