List Subaccount Details
Calls
Intelligence
Conversational Pathways
- GETGet All Pathways Information
- GETGet Single Pathway Information
- POSTCreate Pathway
- POSTUpdate Pathway
- DELDelete Pathway
- Pathway Chat
- Pathway Versions
- Pathway Folders
Vector Knowledge Bases
Voices
Custom Tools
Web Agents
Custom Twilio Accounts
Batches
SMS
Account
Organizations
- POSTCreate Organization
- DELDelete Organization
- GETGet Organization
- GETGet Organization Members
- GETGet Organization's Current Service Version
- GETList Organization's Service Versions
- PATCHUpdate Organization's Service Version
- PATCHUpdate Organization Members
- PATCHUpdate Organization Member Permissions
- PATCHUpdate Organization Properties
- GETGet User Organization Memberships
- DELLeave Organization
- GETGet Organization Billing Information
- GETGet Organization Billing Refill Information
List Subaccount Details
View a subaccount’s details.
GET
/
v1
/
subaccounts
/
{subaccount_id}
curl --request GET \
--url https://api.bland.ai/v1/subaccounts/{subaccount_id} \
--header 'authorization: <authorization>'
{
"status": "success",
"subaccount": {
"subaccount_id": "1234567890",
"first_name": "John",
"last_name": "Doe",
"balance": 150,
"api_key": "sub-sk-1234567890"
}
}
Headers
Your API key for authentication.
Path Parameters
The unique identifier of the subaccount.
Response
Whether the subaccount creation succeeded.
The affected subaccount’s unique identifier.
The new API key for the subaccount.
{
"status": "success",
"subaccount": {
"subaccount_id": "1234567890",
"first_name": "John",
"last_name": "Doe",
"balance": 150,
"api_key": "sub-sk-1234567890"
}
}
curl --request GET \
--url https://api.bland.ai/v1/subaccounts/{subaccount_id} \
--header 'authorization: <authorization>'
{
"status": "success",
"subaccount": {
"subaccount_id": "1234567890",
"first_name": "John",
"last_name": "Doe",
"balance": 150,
"api_key": "sub-sk-1234567890"
}
}