Get A Business Customer
curl --request GET \
--url https://api-dev-embedded.embedly.ng/embedded/api/v1/customer/{customerId}import requests
url = "https://api-dev-embedded.embedly.ng/embedded/api/v1/customer/{customerId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-dev-embedded.embedly.ng/embedded/api/v1/customer/{customerId}', 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/customer/{customerId}",
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/customer/{customerId}"
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/customer/{customerId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-dev-embedded.embedly.ng/embedded/api/v1/customer/{customerId}")
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": {
"id": "a6a7a570-5f67-4ec3-8651-5c30abc5b114",
"businessId": "630a9d26-a985-41fd-bdbe-3f76f4090658",
"orgId": "269fdb72-8c60-472e-a770-8a4e3bf0cdd9",
"firstName": "Bunch",
"lastName": "Dillon",
"email": "adah.olotu.cus2@gmail.com",
"phoneNumber": "07034712223",
"gender": "male",
"dob": "2025-03-14",
"nin": "63184876213",
"bvn": "95888168924",
"photo": "https://bucket-rev-fin-stack.s3.eu-west-1.amazonaws.com/a6a7a570-5f67-4ec3-8651-5c30abc5b114-PHOTO-588213ae-bac0-4f94-abf8-e90c3f8e1fc5.pdf",
"utility": null,
"walletId": "0e9735ee-67f1-4bb4-8681-fe5d9608056c",
"userId": "null",
"approver": null,
"gomoneyId": "9b2c593b-0c37-4fda-b501-aace365f4885",
"transactionPin": "111222",
"country": "Nigeria",
"state": "Lagos",
"lga": "Ikeja",
"streetAddress": "28 Dummy Close, Bigger Dummy",
"walletTier": "tier_1",
"idType": "BVN",
"utilityVerified": false,
"isActive": true,
"dateCreated": "2025-04-08T12:22:12.854Z",
"dateUpdated": "2025-04-08T12:23:58.592Z"
},
"statusCode": 200,
"message": "Customer retrieved successfully"
}
{
"statusCode": 401,
"message": "No Authentication found!",
"error": "Unauthorized"
}
Business Customer
Get A Business Customer
This endpoint enables you retrieve details of a particular customer
GET
/
embedded
/
api
/
v1
/
customer
/
{customerId}
Get A Business Customer
curl --request GET \
--url https://api-dev-embedded.embedly.ng/embedded/api/v1/customer/{customerId}import requests
url = "https://api-dev-embedded.embedly.ng/embedded/api/v1/customer/{customerId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-dev-embedded.embedly.ng/embedded/api/v1/customer/{customerId}', 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/customer/{customerId}",
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/customer/{customerId}"
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/customer/{customerId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-dev-embedded.embedly.ng/embedded/api/v1/customer/{customerId}")
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": {
"id": "a6a7a570-5f67-4ec3-8651-5c30abc5b114",
"businessId": "630a9d26-a985-41fd-bdbe-3f76f4090658",
"orgId": "269fdb72-8c60-472e-a770-8a4e3bf0cdd9",
"firstName": "Bunch",
"lastName": "Dillon",
"email": "adah.olotu.cus2@gmail.com",
"phoneNumber": "07034712223",
"gender": "male",
"dob": "2025-03-14",
"nin": "63184876213",
"bvn": "95888168924",
"photo": "https://bucket-rev-fin-stack.s3.eu-west-1.amazonaws.com/a6a7a570-5f67-4ec3-8651-5c30abc5b114-PHOTO-588213ae-bac0-4f94-abf8-e90c3f8e1fc5.pdf",
"utility": null,
"walletId": "0e9735ee-67f1-4bb4-8681-fe5d9608056c",
"userId": "null",
"approver": null,
"gomoneyId": "9b2c593b-0c37-4fda-b501-aace365f4885",
"transactionPin": "111222",
"country": "Nigeria",
"state": "Lagos",
"lga": "Ikeja",
"streetAddress": "28 Dummy Close, Bigger Dummy",
"walletTier": "tier_1",
"idType": "BVN",
"utilityVerified": false,
"isActive": true,
"dateCreated": "2025-04-08T12:22:12.854Z",
"dateUpdated": "2025-04-08T12:23:58.592Z"
},
"statusCode": 200,
"message": "Customer retrieved successfully"
}
{
"statusCode": 401,
"message": "No Authentication found!",
"error": "Unauthorized"
}
Get All Business Customers
The unique identifier of a customer created in favour of a business.
Example:
299b88c8-b13c-4336-8ed6-2ff4ab3e7f49{
"data": {
"id": "a6a7a570-5f67-4ec3-8651-5c30abc5b114",
"businessId": "630a9d26-a985-41fd-bdbe-3f76f4090658",
"orgId": "269fdb72-8c60-472e-a770-8a4e3bf0cdd9",
"firstName": "Bunch",
"lastName": "Dillon",
"email": "adah.olotu.cus2@gmail.com",
"phoneNumber": "07034712223",
"gender": "male",
"dob": "2025-03-14",
"nin": "63184876213",
"bvn": "95888168924",
"photo": "https://bucket-rev-fin-stack.s3.eu-west-1.amazonaws.com/a6a7a570-5f67-4ec3-8651-5c30abc5b114-PHOTO-588213ae-bac0-4f94-abf8-e90c3f8e1fc5.pdf",
"utility": null,
"walletId": "0e9735ee-67f1-4bb4-8681-fe5d9608056c",
"userId": "null",
"approver": null,
"gomoneyId": "9b2c593b-0c37-4fda-b501-aace365f4885",
"transactionPin": "111222",
"country": "Nigeria",
"state": "Lagos",
"lga": "Ikeja",
"streetAddress": "28 Dummy Close, Bigger Dummy",
"walletTier": "tier_1",
"idType": "BVN",
"utilityVerified": false,
"isActive": true,
"dateCreated": "2025-04-08T12:22:12.854Z",
"dateUpdated": "2025-04-08T12:23:58.592Z"
},
"statusCode": 200,
"message": "Customer retrieved successfully"
}
{
"statusCode": 401,
"message": "No Authentication found!",
"error": "Unauthorized"
}
⌘I