๐Ÿ™…Create a Business without a Customer

Create a Business without a Customer. You don't need to have a Customer to create a Business, as Businesses can exist as separate entities in Gathr just as they do in the real world.

It is important to note that, if you create a Business without a Customer, you will not be able to perform any of the Customer verifications and validations in Gathr that require a customer_id.

Therefore, you will not be able to:

  1. Generate a Customer Credit Report/Credit Report and Score

  2. Collect personal [consumer] Bank Statements and Transactions via Online Login or Manual Upload

  3. Upload and Verify an Identity Document for Proof of Identification

  4. Upload and Verify Address Documentation for Proof of Address.

Create a Business without a Customer

POST {{baseUrl}}/businesses

Create a Business without a Customer Record.

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

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": "THE JOLA CREATIONS",
        "type": "Private Company",
        "reg": "xxxx/xxxxxx/xx",
        "enterprise_num": "Kxxxxxxxxxx",
        "linked_customers": [],
        "cipc_business_verified": false,
        "cipc_director_verified": false,
        "cipc_information": null,
        "cipc_timestamp": null
    }
}
```

Suggested entries for Registration Number and Enterprise Number

Company/Business TypeRegistration 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

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

Example Request with CIPC check

```postman_json
{
    "name": "Finch Technologies (Pty) Ltd",
    "type": "Private Company",
    "reg": "2015/123456/23",
    "enterprise_num": "K2016513771", 
    "cipc_check":true 
}
```

Last updated