๐Ÿ™‹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.

Create a Business for a Customer

POST {{baseUrl}}/businesses

Create a Business for a pre-existing customer_id.

Headers

NameTypeDescription

Content-Type*

application/json

Request Body

NameTypeDescription

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.

```postman_json
{
    "data": {
        "id": "{{businessId}}",
        "name": "Finch Technologies (Pty) Ltd",
        "type": "Private Company",
        "reg": "xxxx/xxxxxx/24",
        "enterprise_num": "KXXXXXXXXXX",
        "linked_customers": [
            {
                "customer": "{{customerId}}",
                "relationship": "director"
            }
        ],
        "cipc_business_verified": false,
        "cipc_director_verified": false,
        "cipc_information": null,
        "cipc_timestamp": null
    }
}
```

Suggested entries for Registration Number and Enterprise Number

Company/Business Type Registration NumberEnterprise 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

Partnership

Business Trust

Business Trust Number

Unique Company Identifier

NGO

Company Registration Number

Company Registration Number

Example Request without CIPC check

{
    "customer_id": "{{customerId}}",
    "name": "Finch Technologies (Pty) Ltd",
    "type": "Private Company",
    "reg": "2015/123456/23",
    "enterprise_num":"K2016513771"
}

Example 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 
}

Last updated