Get All Business Customers
curl --request GET \
--url https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customersimport requests
url = "https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customers"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customers"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customers")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"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"
}
{
"statusCode": 401,
"message": "No Authentication found!",
"error": "Unauthorized"
}
Business Customer
Get All Business Customers
This endpoint enables you retrieve all customers a business has created
GET
/
embedded
/
api
/
v1
/
businesses
/
{businessId}
/
customers
Get All Business Customers
curl --request GET \
--url https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customersimport requests
url = "https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customers"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customers"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customers")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-dev-embedded.embedly.ng/embedded/api/v1/businesses/{businessId}/customers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"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"
}
{
"statusCode": 401,
"message": "No Authentication found!",
"error": "Unauthorized"
}
Get All Business Customers
The unique identifier of a business created by your organization. Example:
299b88c8-b13c-4336-8ed6-2ff4ab3e7f49The page number to be returned, Example:
1The limit of items to be returned per page, Example:
10{
"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"
}
{
"statusCode": 401,
"message": "No Authentication found!",
"error": "Unauthorized"
}
⌘I