> ## Documentation Index
> Fetch the complete documentation index at: https://docs-embeddedfinance.embedly.ng/llms.txt
> Use this file to discover all available pages before exploring further.

# Get All Business Customers

> This endpoint enables you retrieve all customers a business has created

# Get All Business Customers

***

<ParamField path="businessId" type="string" required>
  The unique identifier of a business created by your organization. **Example:**
  `299b88c8-b13c-4336-8ed6-2ff4ab3e7f49`
</ParamField>

<ParamField query="page" type="number" default="1">
  The page number to be returned, **Example:** `1`
</ParamField>

<ParamField query="limit" type="number" default="10">
  The limit of items to be returned per page, **Example:** `10`
</ParamField>

<ResponseExample>
  ```json Success theme={null}
  {
  	"data": {
  		"data": [
  			{
  				"id": "8e9051f5-4f0a-4ece-99b6-19d8d52b9479",
  				"businessId": "dfad02ef-69e5-4997-8602-21693070178d",
  				"orgId": "94c337a6-4403-46aa-9aeb-bdc50ea6806d",
  				"firstName": "Doanald",
  				"lastName": "Blyth",
  				"email": "donald@mailnator.com",
  				"phoneNumber": "07070554421",
  				"gender": "male",
  				"dob": "1990-01-01",
  				"nin": "98765432138",
  				"bvn": "45678956472",
  				"photo": null,
  				"utility": null,
  				"walletId": null,
  				"userId": "null",
  				"approver": null,
  				"gomoneyId": null,
  				"transactionPin": "123456",
  				"country": "string",
  				"state": "string",
  				"lga": "string",
  				"streetAddress": "string",
  				"walletTier": "tier_1",
  				"idType": "BVN",
  				"utilityVerified": false,
  				"isActive": true,
  				"dateCreated": "2025-07-21T14:37:38.227Z",
  				"dateUpdated": "2025-07-21T14:37:38.227Z"
  			}
  		],
  		"total": 1,
  		"page": 1,
  		"limit": 10,
  		"totalPages": 1
  	},
  	"statusCode": 200,
  	"message": "Business customers retrieved successfully"
  }
  ```

  ```json Unauthorized theme={null}
  {
  	"statusCode": 401,
  	"message": "No Authentication found!",
  	"error": "Unauthorized"
  }
  ```
</ResponseExample>
