Get A Corporate Customer
curl --request GET \
--url https://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId} \
--header 'x-api-key: <api-key>'import requests
url = "https://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://waas-staging.embedly.ng/api/v1/corporate/customers/{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://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"code": "00",
"success": true,
"message": "Retrieved successfully",
"data": {
"id": "724bb798-fae8-4856-97a6-9d2076266c29",
"organizationId": "0075b72d-6648-11f0-a7cf-0274f77d4a81",
"customerTypeId": "0ed8b99b-8097-4e49-bd4c-ff0410c57d27",
"countryId": "c15ad9ae-c4d7-4342-b70f-de5508627e3b",
"mobileNumber": null,
"city": "Lagos",
"address": "12 Adeola Odeku Street, Victoria Island, Lagos",
"emailAddress": "user@example.com",
"customerTierId": 0,
"corporateName": "Acme Technologies Limited",
"isCorporateVerified": "Pending",
"dateCreated": "2025-12-08T06:25:48.561102",
"dateUpdated": null,
"discoCode": "0410c57d27"
}
}
Corporate
Get A Corporate Customer
This endpoint enables you to retrieve details of a corporate customer
GET
/
corporate
/
customers
/
{customerId}
Get A Corporate Customer
curl --request GET \
--url https://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId} \
--header 'x-api-key: <api-key>'import requests
url = "https://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://waas-staging.embedly.ng/api/v1/corporate/customers/{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://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://waas-staging.embedly.ng/api/v1/corporate/customers/{customerId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"code": "00",
"success": true,
"message": "Retrieved successfully",
"data": {
"id": "724bb798-fae8-4856-97a6-9d2076266c29",
"organizationId": "0075b72d-6648-11f0-a7cf-0274f77d4a81",
"customerTypeId": "0ed8b99b-8097-4e49-bd4c-ff0410c57d27",
"countryId": "c15ad9ae-c4d7-4342-b70f-de5508627e3b",
"mobileNumber": null,
"city": "Lagos",
"address": "12 Adeola Odeku Street, Victoria Island, Lagos",
"emailAddress": "user@example.com",
"customerTierId": 0,
"corporateName": "Acme Technologies Limited",
"isCorporateVerified": "Pending",
"dateCreated": "2025-12-08T06:25:48.561102",
"dateUpdated": null,
"discoCode": "0410c57d27"
}
}
string
required
The uniqe identifier of the corporate customer. Example:
3fa85f64-5717-4562-b3fc-2c963f66afa6{
"code": "00",
"success": true,
"message": "Retrieved successfully",
"data": {
"id": "724bb798-fae8-4856-97a6-9d2076266c29",
"organizationId": "0075b72d-6648-11f0-a7cf-0274f77d4a81",
"customerTypeId": "0ed8b99b-8097-4e49-bd4c-ff0410c57d27",
"countryId": "c15ad9ae-c4d7-4342-b70f-de5508627e3b",
"mobileNumber": null,
"city": "Lagos",
"address": "12 Adeola Odeku Street, Victoria Island, Lagos",
"emailAddress": "user@example.com",
"customerTierId": 0,
"corporateName": "Acme Technologies Limited",
"isCorporateVerified": "Pending",
"dateCreated": "2025-12-08T06:25:48.561102",
"dateUpdated": null,
"discoCode": "0410c57d27"
}
}
⌘I