On the Synctera platform, the business resource represents an organization that can be an account holder or the owner of another business.
curl
examples assume you have set up baseurl
and apikey
environment variables. See Base URLs and Authentication for instructions. Some examples depend on identifiers generated by previous steps. These are indicated like {BUSINESS_ID}
Create a Person
is_customer
, here we’ve set it to false, if you want to enable this customer to also transact on the platform you’ll need to set is_customer
to true.id
from the response to identify the person taking actions on behalf of the business.Create Business
PROSPECT
status to indicate that it is not yet fully configured. If not all attributes (e.g. addresses) are available, they can be added later. Set is_customer
to true
to indicate that this business can be an account holder, rather than just an owner.id
attribute. This is used for future GET
, PATCH
and DELETE
requests, as well as to link this business to other objects like disclosures and accounts.Business Ownership
id
of the person created in step 1 or add separate personal customers as beneficial owners. Below is a snippet of creating a personal customer resource and adding them as a beneficial owner of the business:id
and create a beneficial owner relationship between the person and the business by calling the POST /relationships endpoint specifying relationship type: BENEFICIAL_OWNER_OF
.MANAGING_PERSON_OF
relationship.OWNER_OF
relationship.OWNER_CERTIFICATION
disclosure upon saving business information.I certify to the best of my knowledge that the information entered is complete and correct.
Disclosures
BENEFICIAL_OWNER
or a MANAGING_PERSON
. If they aren’t you should collect business formation documentation and verify the agent’s relationship with the business.If the person entering the information is not an existing customer, first a customer needs to be created that represents the person responsible for entering beneficial owner information.Create a disclosure record with POST /v0/disclosures, passing in the personal customer id, business id and the OWNER_CERTIFICATION
disclosure type. Here acknowledging_person_id
and business_id
are required fields.REG_E
or ESIGN
, you can create a record using the same disclosure request with an update appropriate type. You’ll need to work with your Synctera partner to determine the type of disclosures that you’ll need to record for your business.Activate Business
ACTIVE
using PATCH /v0/businesses/{BUSINESS_ID}:Run KYB
status
of ACTIVE
, its verification_status
is still UNVERIFIED
, so its will not be able to perform most banking activities. The next step is to verify the business’s identity using a Know Your Business (KYB) verification. See the KYC/KYB Verification section of this guide for more details as well as descriptions of other types of verification and risk checks.Run a verification using POST /v0/verifications/verify, e.g.:verification_status
will now be ACCEPTED
. This can be checked by a GET /v0/businesses/{BUSINESS_ID}:Use the Business with Other APIs
status
is an editable attribute representing the administrative state of the business. The integrator can use this to indicate whether they consider the business to be active, dormant, etc.verification_status
is a read-only attribute representing the results of the verification process. This is updated by the Synctera platform when verification actions, e.g. KYB checks, are performed.status
and verification_status
attributes.
ACTIVE
, FROZEN
or INACTIVE
business.
Note that all states other than ACTIVE
are restricted and do not allow most banking operations.
Status Value | Description |
---|---|
ACTIVE | An active business |
CANCELLED | The business has filed a cancellation, or has failed to file its periodic report after notice of forfeiture of its rights to do business |
CONVERTED | The business type has changed to another type within the same jurisdiction |
DISSOLVED | The business has filed articles of dissolution or a certificate of termination to terminate its existence |
FROZEN | The business’s actions are blocked for security, legal, or other reasons |
INACTIVE | The business is marked as no longer active, e.g. a former customer |
MERGED | The business has ceased to exist by merging into another business entity. |
PROSPECT | A potential business customer, used for information-gathering and disclosures |
SUSPENDED | The business has lost the right to operate in its registered jurisdiction |
PROSPECT
. Typical state transitions are:
ACCEPTED
are restricted and do not allow most banking operations.
Verification Status Value | Description |
---|---|
ACCEPTED | The business is successfully verified |
PENDING | The business’s verification is in progress |
PROVISIONAL | The business is partially verified or verified with restrictions |
REJECTED | The business was rejected |
REVIEW | The business’s verification has run and issues have been identified which require review |
UNVERIFIED | The business’s verification has not been completed |