API routes for creating, retrieving, and updating Customers.
/api/v1/organizations/{org_uuid}/customers
Returns a paginated list of customers in the specified organization.
org_uuid
(string) – The UUID of the organization.uuids
(comma-separated string) – Filter by specific customer UUIDs.page_size
(integer, default: 25
)page_number
(integer, default: 1
)sort_by
(string, default: last_interacted_date
)sort_direction
(string, default: desc
)company_uuids
, personas
, search
, etc.GET /api/v1/organizations/abc123/customers?page_size=10
/api/v1/organizations/{org_uuid}/customers
Creates a new customer within the specified organization.
org_uuid
(string)/api/v1/organizations/{org_uuid}/customers/{customer_uuid}
Retrieves the details of a single customer.
org_uuid
(string)customer_uuid
(string)GET /api/v1/organizations/abc123/customers/cust-9999
/api/v1/organizations/{org_uuid}/customers/{customer_uuid}
Updates the details of an existing customer.
org_uuid
(string)customer_uuid
(string)/api/v1/organizations/{org_uuid}/customers/{customer_uuid}/feedbacks
Returns all feedback associated with the specified customer.
org_uuid
(string)customer_uuid
(string)sort_by
, sort_direction
(default: feedback_date
, desc
)page_size
(integer, default: 25)page_number
(integer, default: 1)/api/v1/organizations/{org_uuid}/customers/{customer_uuid}/feedback_highlights
Lists highlights from the feedback associated with a specific customer.
org_uuid
(string)customer_uuid
(string)page_size
(integer, default: 25)page_number
(integer, default: 1)/api/v1/organizations/{org_uuid}/customers/{customer_uuid}/insights
Lists insights derived from a specific customer’s feedback data.
org_uuid
(string)customer_uuid
(string)page_size
(integer, default: 25)page_number
(integer, default: 1)/api/v1/organizations/{org_uuid}/customers/{customer_uuid}/issues
Lists issues associated with the specified customer.
org_uuid
(string)customer_uuid
(string)page_size
(integer, default: 25)page_number
(integer, default: 1)page_size
and page_number
to manage the volume of results returned.