Endpoint
GET /clients/business/details
The ID of the business whose details you want to retrieve.
Response
Registered business name.
Bank Verification Number.
URL to the uploaded photo ID.
data.businessDocumentsUrls
URLs of uploaded business documents.
true if the business has been approved.
Registered residential address.
State object with id and name.
The client account this business belongs to.
Code examples
curl -X GET https://sandbox.stellasbank.com/api/v1/clients/business/details \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "SECRET_KEY: YOUR_SECRET_KEY" \
-H "businessId: YOUR_BUSINESS_ID"
Example response
{
"status": true,
"message": "Business details retrieved successfully",
"data": {
"id": "biz_xyz789",
"businessName": "Acme Ltd",
"bvn": "12345678901",
"photoIdUrl": "https://storage.example.com/photo-id.jpg",
"businessDocumentsUrls": ["https://storage.example.com/doc1.pdf"],
"isApproved": true,
"residentialAddress": "12 Marina Street, Lagos",
"stateId": "state_01",
"state": { "id": "state_01", "name": "Lagos" },
"clientId": "client_001"
}
}