In the Synctera platform, a person represents a natural person, including account holders, beneficial owners of a business and authorized signers. A person can hold multiple of these roles at the same time.
/v0/persons
which reflect the new API approach.We recommend using /v0/persons
(instead of /v0/customers
) as it will be closer to the future version.Note that these endpoints provide a different style of accessing the same data. Resources created by one endpoint can be accessed using the other, with the same ID. This ID can be used in other APIs that reference a personal customer using either a customer_id
or person_id
attribute.curl
examples assume you have set up baseurl
and apikey
environment variables. See Base URL and Authentication for instructions. Some examples depend on identifiers generated by previous steps. These are indicated like {BUSINESS_ID}
.
PROSPECT
status:
id
attribute. This is used for future GET
, PATCH
and DELETE
requests, as well as to link this person to other objects like disclosures and accounts.
ACTIVE
status:
status
of ACTIVE
, their verification_status
is still UNVERIFIED
, so they will not be able to perform most banking activities. The next step is verify the person’s identity using a Know Your Customer (KYC) verification. See the KYC/KYB Verification 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/persons/{PERSON_ID}:
status
is an editable attribute representing the administrative state of the person. The integrator can use this to indicate whether they consider the person 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. KYC checks, are performed.status
and verification_status
attributes.
ACTIVE
, FROZEN
or INACTIVE
customer.
Note that all states other than ACTIVE
are restricted and do not allow most banking operations.
Status Value | Description |
---|---|
ACTIVE | An active customer |
DECEASED | The person is deceased |
DENIED | The customer was turned down |
DORMANT | The person is inactive due to an extended period without any transactions |
ESCHEAT | The person’s assets are abandoned and are property of the state |
FROZEN | The person’s actions are blocked for security, legal, or other reasons |
INACTIVE | The person is marked as no longer active, e.g. a former customer |
PROSPECT | A potential customer, used for information-gathering and disclosures |
PROSPECT
. Typical state transitions are:
ACCEPTED
are restricted and do not allow most banking operations.
Verification Status Value | Description |
---|---|
ACCEPTED | The person is successfully verified |
PENDING | The person’s verification is in progress |
PROVISIONAL | The person is partially verified or verified with restrictions |
REJECTED | The person was rejected |
REVIEW | The persons’s verification has run and issues have been identified which require review |
UNVERIFIED | The person’s verification has not been completed |