How to Search for Contacts (People)

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/[email protected]

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=testTag

Notes:

  • Email and tag filters are case-sensitive.

  • You can combine filters as needed, for example:

    GET /api/[email protected]&tags=testTag

  • The response will include all people matching the filter criteria.