Retrieves detailed information about a specific vendor, including its associated organizations.
cURL
curl --request GET \ --url https://app.phonebot.io:80/api/v1/vendors/{vendorId}
{ "success": true, "timestamp": "2025-04-17T14:23:30Z", "message": "<string>", "data": { "id": "a1b2c3d4-e5f6-7890-1234-567890abcdef", "name": "ACME Corporation", "organizations": [ { "id": "f0e9d8c7-b6a5-4321-fedc-ba9876543210", "companyName": "Example Corp" } ] }, "traceId": "<string>" }
ID of the Vendor (UUID)
Successfully retrieved vendor 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 vendor (UUID).
"a1b2c3d4-e5f6-7890-1234-567890abcdef"
Name of the vendor.
"ACME Corporation"
List of organizations associated with this vendor (basic description).
Unique identifier of the organization (UUID).
"f0e9d8c7-b6a5-4321-fedc-ba9876543210"
Name of the organization.
"Example Corp"
Correlation or trace ID
Was this page helpful?