Get A Business
curl --request GET \
--url https://api-dev-embedded.embedly.ng/embedded/api/v1/business/{businessId}import requests
url = "https://api-dev-embedded.embedly.ng/embedded/api/v1/business/{businessId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-dev-embedded.embedly.ng/embedded/api/v1/business/{businessId}', 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/business/{businessId}",
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/business/{businessId}"
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/business/{businessId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-dev-embedded.embedly.ng/embedded/api/v1/business/{businessId}")
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": "99cffa6d-89bc-4124-8cf0-6d415888ca72",
"orgId": "299b88c8-b13c-4336-8ed6-2ff4ab3e7f49",
"approver": null,
"walletId": null,
"userId": null,
"title": "string",
"firstName": "string",
"lastName": "string",
"dateOfBirth": "2007-03-20",
"businessName": "string",
"email": "leakn@mailinator.com",
"phoneNumber": "07075651000",
"industry": "TRANSPORTATION",
"country": "string",
"lga": "string",
"streetAddress": "string",
"state": "string",
"bvn": "12345678901",
"nin": "98765432109",
"businessType": "BUSINESS_NAME",
"businessRegistrationNumber": "RC00080",
"taxIdentificationNumber": "8000000553",
"dateOfIncorporation": "2025-03-23",
"ownerPassportPhoto": null,
"bankCode": "string",
"accountName": "string",
"accountNumber": "string",
"gomoneyId": null,
"postalCode": "string",
"docsUploaded": false,
"docsVerified": false,
"cacVerified": true,
"tinVerified": true,
"directorsVerified": false,
"fraudRiskStatusIsGood": false,
"status": "PENDING",
"webhook": "https://example.com/webhook",
"webhookSecret": "string",
"dateCreated": "2025-03-27T10:47:37.248Z",
"dateUpdated": "2025-03-27T10:47:37.248Z",
"directors": [],
"documents": {
"id": "9c3ba7eb-d514-4011-80b0-3478c7d6c04f",
"businessId": "99cffa6d-89bc-4124-8cf0-6d415888ca72",
"memart": null,
"proofOfAddress": null,
"listOfDirectors": null,
"ubo": null,
"mou": null,
"idsOfDirectors": null,
"cac": null,
"utility": null,
"dateCreated": "2025-03-27T10:47:37.283Z",
"dateUpdated": "2025-03-27T10:47:37.283Z"
}
},
"statusCode": 200,
"message": "Business retrieved successfully"
}
Business
Get A Business
This endpoint enables you retrieve the details of a particular business
GET
/
embedded
/
api
/
v1
/
business
/
{businessId}
Get A Business
curl --request GET \
--url https://api-dev-embedded.embedly.ng/embedded/api/v1/business/{businessId}import requests
url = "https://api-dev-embedded.embedly.ng/embedded/api/v1/business/{businessId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-dev-embedded.embedly.ng/embedded/api/v1/business/{businessId}', 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/business/{businessId}",
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/business/{businessId}"
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/business/{businessId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-dev-embedded.embedly.ng/embedded/api/v1/business/{businessId}")
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": "99cffa6d-89bc-4124-8cf0-6d415888ca72",
"orgId": "299b88c8-b13c-4336-8ed6-2ff4ab3e7f49",
"approver": null,
"walletId": null,
"userId": null,
"title": "string",
"firstName": "string",
"lastName": "string",
"dateOfBirth": "2007-03-20",
"businessName": "string",
"email": "leakn@mailinator.com",
"phoneNumber": "07075651000",
"industry": "TRANSPORTATION",
"country": "string",
"lga": "string",
"streetAddress": "string",
"state": "string",
"bvn": "12345678901",
"nin": "98765432109",
"businessType": "BUSINESS_NAME",
"businessRegistrationNumber": "RC00080",
"taxIdentificationNumber": "8000000553",
"dateOfIncorporation": "2025-03-23",
"ownerPassportPhoto": null,
"bankCode": "string",
"accountName": "string",
"accountNumber": "string",
"gomoneyId": null,
"postalCode": "string",
"docsUploaded": false,
"docsVerified": false,
"cacVerified": true,
"tinVerified": true,
"directorsVerified": false,
"fraudRiskStatusIsGood": false,
"status": "PENDING",
"webhook": "https://example.com/webhook",
"webhookSecret": "string",
"dateCreated": "2025-03-27T10:47:37.248Z",
"dateUpdated": "2025-03-27T10:47:37.248Z",
"directors": [],
"documents": {
"id": "9c3ba7eb-d514-4011-80b0-3478c7d6c04f",
"businessId": "99cffa6d-89bc-4124-8cf0-6d415888ca72",
"memart": null,
"proofOfAddress": null,
"listOfDirectors": null,
"ubo": null,
"mou": null,
"idsOfDirectors": null,
"cac": null,
"utility": null,
"dateCreated": "2025-03-27T10:47:37.283Z",
"dateUpdated": "2025-03-27T10:47:37.283Z"
}
},
"statusCode": 200,
"message": "Business retrieved successfully"
}
Get A Business
The unique identifier of your organization, Example:
299b88c8-b13c-4336-8ed6-2ff4ab3e7f49{
"data": {
"id": "99cffa6d-89bc-4124-8cf0-6d415888ca72",
"orgId": "299b88c8-b13c-4336-8ed6-2ff4ab3e7f49",
"approver": null,
"walletId": null,
"userId": null,
"title": "string",
"firstName": "string",
"lastName": "string",
"dateOfBirth": "2007-03-20",
"businessName": "string",
"email": "leakn@mailinator.com",
"phoneNumber": "07075651000",
"industry": "TRANSPORTATION",
"country": "string",
"lga": "string",
"streetAddress": "string",
"state": "string",
"bvn": "12345678901",
"nin": "98765432109",
"businessType": "BUSINESS_NAME",
"businessRegistrationNumber": "RC00080",
"taxIdentificationNumber": "8000000553",
"dateOfIncorporation": "2025-03-23",
"ownerPassportPhoto": null,
"bankCode": "string",
"accountName": "string",
"accountNumber": "string",
"gomoneyId": null,
"postalCode": "string",
"docsUploaded": false,
"docsVerified": false,
"cacVerified": true,
"tinVerified": true,
"directorsVerified": false,
"fraudRiskStatusIsGood": false,
"status": "PENDING",
"webhook": "https://example.com/webhook",
"webhookSecret": "string",
"dateCreated": "2025-03-27T10:47:37.248Z",
"dateUpdated": "2025-03-27T10:47:37.248Z",
"directors": [],
"documents": {
"id": "9c3ba7eb-d514-4011-80b0-3478c7d6c04f",
"businessId": "99cffa6d-89bc-4124-8cf0-6d415888ca72",
"memart": null,
"proofOfAddress": null,
"listOfDirectors": null,
"ubo": null,
"mou": null,
"idsOfDirectors": null,
"cac": null,
"utility": null,
"dateCreated": "2025-03-27T10:47:37.283Z",
"dateUpdated": "2025-03-27T10:47:37.283Z"
}
},
"statusCode": 200,
"message": "Business retrieved successfully"
}
⌘I