Premium Feature
KYC through Socure is available as a premium feature. Contact Sales to inquire more about access. If you're an existing customer, reach out to your Account Manager or to [email protected] Socure account is required.
Overview
A KYC order can be placed on a business to run a due diligence checks on the people associated with that business. Each person submitted on the business at create time with Socure's required PII (Personal Identification Information) will be run through the Socure KYC bundle configured on their account.
See the people section of the Create A Business page to see information about what KYC fields are required on a person at submit time.
See the person resource for more details about the kyc
schema returned for each KYC check.
Decision Module
The Decision module returns a simple interpretable recommendation for a transaction based on underlying logic that defines intermediary outcomes when certain criteria is met. It needs to be enabled and configured per Socure account before it can be used. Once you're signed up for a Socure's decision module guide for more details.
If enabled on your account, a KYC decision
will be returned per person and the final aggregation of that result will be returned as an insight on the business.
Device Risk Module
The Sigma Device module uses device fingerprinting technology to create an ID that can be used to identify a device, which is combined with additional PII to link device with an identity. The Device Session ID is generated from one of Socure's client side SDKs. Once you have a Socure account, you can read more about that over here
Progressive KYC
In order to support an efficient onboarding process, we enable customers to run a KYC Order on a business and then an Identity Order. We also enabled customers to run KYC Orders after an identity order is completed.
To submit a KYC only Order, submit you business as you would normally with the Business's fields and request a KYC Order in the orders
section of you request. Once the KYC Order is completed and you'd like to run an Identity Order, add an identity
order to the business as outlined in Create an Order.
To add a KYC order after an identity order has completed, update the business's people
object with an array of people that you'd like to run a KYC report on.
{
"name": "A business Inc",
"addresses": [
{
"address_line1": "1234 Main",
"city": "San Francisco",
"state": "CA",
"postal_code": "94109"
}
],
"people": [
{
"first_name": "Kyle",
"last_name": "Mack",
"dob": "2001-12-31",
"ssn": "123456789",
"address_line1": "1234 Main",
"address_line2": "Apt #5678",
"city": "San Francisco",
"state": "CA",
"postal_code": "94109",
"phone_number": "7075555555",
"email": "[email protected]",
"device_session_id": "1a74f8ba2be28cfc9020"
}
],
"orders": [ {"product": "kyc" } ]
}
{
"people": [
{ name: "Kurt Ruppel" },
{
"first_name": "Kyle",
"last_name": "Mack",
"dob": "2001-12-31",
"ssn": "123456789",
"address_line1": "1234 Main",
"address_line2": "Apt #5678",
"city": "San Francisco",
"state": "CA",
"postal_code": "94109",
"phone_number": "7075555555",
"email": "[email protected]",
"device_session_id": "1a74f8ba2be28cfc9020"
}
]
}
{
"object": "business",
"id": "880a9600-4176-46c9-9a07-903104c675da",
"review": {
"object": "review",
"id": "883fab97-e473-414a-be65-bd5a20899177",
"created_at": "2022-05-13T22:25:24.971Z",
"updated_at": "2022-05-13T22:25:25.169Z",
"completed_at": null,
"tasks": [
{
"category": "kyc",
"key": "kyc_decision",
"label": "KYC",
"message": "No risks were found with the associated people",
"name": "kyc",
"status": "warning",
"sub_label": "Accept",
"sources": []
}
]
},
"people": [
{
"object": "person",
"name": "Kyle Mack",
"submitted": true,
"business_id": "880a9600-4176-46c9-9a07-903104c675da",
"sources": [],
"titles": [],
"kyc": {
"object": "kyc_result",
"provider_external_id": "2cf895d3-83a0-4b2c-a5f2-aa49dd0fc591",
"provider": "socure",
"decision": "accept",
"result": {
"fields": "that",
"depend": "on",
"what": "bundles",
"are": "enabled",
"on": "your account :)"
}
}
}
],
"phone_numbers": [],
"profiles": [],
"registrations": [],
"orders": [
{
"id": "d2507100-c924-013a-7447-2cde48001122",
"product": "kyc",
"created_at": "2022-05-13T22:25:24.971Z",
"updated_at": "2022-05-13T22:25:25.169Z",
"completed_at": "2022-05-13T22:25:25.169Z",
"status": "completed"
}
],
"industry_classification": null
}