🔎Find Business
Lookup and retrieve Business information for a Business using their business_id.
GET {{baseUrl}}/businesses/:business_id
Path Parameters
Name
Type
Description
businessId*
String
The UUID for a specific business that gets generated and returned in either POST Create a Business for a Customer or POST Create a Business without a Customer
API Responses
{
"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
}
}{
"errors": {
"code": "entity_not_found",
"message": "Record not found in businesses"
}
}Last updated