Searching

List endpoints support full-text search using the search parameter. Search is case-insensitive and works across multiple text fields relevant to each resource type.

Example:

GET /v2/customers?search=smith

This searches across customer names, emails, company names, and other text fields for the term "smith".

Search can be combined with filters and pagination:

GET /v2/customers?search=smith&filter[status]=active&page=2

Last updated