Skip to main content
You can quickly find contacts in Universal CRM by filtering on email, phone number, or tags using query parameters. All searches are performed with a simple GET request.

Filter by Email (case-sensitive)

GET https://crm.universal.rollout.com/api/people?email=sarah.chen@northstarrealty.example

Filter by Phone

GET https://crm.universal.rollout.com/api/people?phone=1234567890

Filter by Tags (case-sensitive)

GET https://crm.universal.rollout.com/api/people?tags=buyer
Notes:
  • Email and tag filters are case-sensitive.
  • You can combine filters as needed, for example:
    GET /api/people?email=sarah.chen@northstarrealty.example&tags=buyer
    
  • The response will include all people matching the filter criteria.