🙋Create a Business for a Customer
Create a Business for a pre-existing Customer. You are also able to complete a CIPC verification on the Business as well as Customer Record.
POST {{baseUrl}}/businesses
Request Body
name*
String
The registered Business name.
type*
String
The type of company the Business is legally registered as.
Types of companies accepted: Private Company, Sole Proprietor, Public Company, Closed Corporation, Partnership, NGO, and Business Trust.
reg*
String
The Business Registration Number.
Example:
xxxx / xxxxxx / xx
enterprise-num*
String
The Business Enterprise Number.
Example:
Kxxxxxxxxxx
customerId*
String
The UUID for a specific customer that gets generated and returned in the POST Create New Customer response. It ensures that the Business is associated to a specific customer.
cipc_check
Boolean
The CIPC check is an additional feature that would need to be enabled and would come at an additional charge.
popi*
Boolean
This is used to store whether the Business has given you Consent under the Protection Of Personal Information (POPI) Act to continue with collecting their data and performing additional verifications in Gathr.
Suggested entries for Registration Number and Enterprise Number
Private Company
Company Registration Number
Company Registration Number
Public Company
Company Registration Number
Company Registration Number
Sole Proprietor
Customer ID Number
Unique Company Identifier
Closed Corporation
Company Registration Number
Company Registration Number
Partnership
RSA ID Number of one of the directors
Unique Company Identifier / Customer UUID
Business Trust
Business Trust Number
Unique Company Identifier
NGO
Company Registration Number
Company Registration Number
Example 1 - Request without CIPC check
{
"customer_id": "{{customerId}}",
"name": "Finch Technologies (Pty) Ltd",
"type": "Private Company",
"reg": "2015/123456/23",
"enterprise_num":"K2016513771",
"popi": true
}Example 2 - Request with CIPC check
{
"customer_id": "{{customerId}}",
"name": "Finch Technologies (Pty) Ltd",
"type": "Private Company",
"reg": "2015/123456/23",
"enterprise_num": "K2016513771",
"cipc_check":true,
"popi": true
}API Responses
Last updated