Retrieves detailed information about a specific organization, including contact info and associated plan.
cURL
curl --request GET \ --url https://app.phonebot.io:80/api/v1/vendors/{vendorId}/organizations/{organizationId}
{ "success": true, "timestamp": "2025-04-17T14:23:30Z", "message": "<string>", "data": { "id": "f0e9d8c7-b6a5-4321-fedc-ba9876543210", "companyName": "Example Corp", "industry": "Technology", "contact": { "firstName": "Jane", "lastName": "Doe", "phoneNumber": "+491701234567", "country": "DE" }, "plan": { "id": "c4a9e3f8-a3b2-4d1c-8b7e-5a9f0d1e2c3b", "name": "Standard Tier" } }, "traceId": "<string>" }
ID of the Vendor (UUID)
ID of the Organization (UUID)
Successfully retrieved organization details
Standard API response wrapper
Indicates if the request was successful
true
Response timestamp in ISO-8601 format
"2025-04-17T14:23:30Z"
Human-readable message
Payload data object
Show child attributes
Unique identifier of the organization (UUID).
"f0e9d8c7-b6a5-4321-fedc-ba9876543210"
Name of the organization.
"Example Corp"
Industry the organization operates in.
"Technology"
Primary contact information for the organization.
First name of the contact.
"Jane"
Last name of the contact.
"Doe"
Contact phone number (preferably E.164 format).
"+491701234567"
Country code of the contact (ISO 3166-1 alpha-2).
"DE"
Plan assigned to this organization (basic description).
Unique identifier of the plan (UUID).
"c4a9e3f8-a3b2-4d1c-8b7e-5a9f0d1e2c3b"
Name of the plan.
"Standard Tier"
Correlation or trace ID
Was this page helpful?