API routes for creating, retrieving, and updating companies
/api/v1/organizations/{org_uuid}/companies
Returns a paginated list of companies for the specified organization.
org_uuid
(string) – The UUID of the organization.uuids
(comma-separated string) – Filter by specific company UUIDs.page_size
(integer, default: 25
)page_number
(integer, default: 1
)sort_by
(string, default: last_interacted_date
)sort_direction
(string, default: desc
)GET /api/v1/organizations/abc123/companies?page_size=5
/api/v1/organizations/{org_uuid}/companies
Creates a new company in the specified organization.
org_uuid
(string)/api/v1/organizations/{org_uuid}/companies/{company_uuid}
Returns details for a single company.
org_uuid
(string)company_uuid
(string)GET /api/v1/organizations/abc123/companies/comp-9999
/api/v1/organizations/{org_uuid}/companies/{company_uuid}
Update details of an existing company.
org_uuid
(string)company_uuid
(string)/api/v1/organizations/{org_uuid}/companies/{company_uuid}/customers
Lists all customers associated with a specific company.
org_uuid
(string)company_uuid
(string)/api/v1/organizations/{org_uuid}/companies/{company_uuid}/feedbacks
Fetches all feedback from customers at the specified company.
org_uuid
(string)company_uuid
(string)/api/v1/organizations/{org_uuid}/companies/{company_uuid}/insights
Lists insights for a company’s collective feedback.
org_uuid
(string)company_uuid
(string)/api/v1/organizations/{org_uuid}/companies/{company_uuid}/issues
Lists issues discovered in the company’s collective feedback.
org_uuid
(string)company_uuid
(string)GET /api/v1/organizations/abc123/companies/comp-9999/issues
from_last_interacted_date
, to_last_interacted_date
, min_sentiment
, etc.). Refer to the main overview or ask your dev team for a complete list.