Exact Match

Endusers, like all models in Tellescope, can leverage the filter argument to perform an exact match lookup on a field.

Single Match

GET **https://api.tellescope.com/v1/enduser?filter=…**

Returns the JSON for an Enduser on a match, or a 4xx error code if no match is found

Multi Match

GET **https://api.tellescope.com/v1/endusers?filter=…**

Returns a list of Endusers. This list will be empty if there is no match

Filter

<aside> 💡 To include the filter parameter, stringify and URI encode the JSON as part of the query string of the URL

</aside>

Match by email

// match by email
{ "filter": { "email": "[email protected]" } }
// as query string, ?filter=%7B%22email%22:%[email protected]%22%7D

// match by externalId
{ "filter": { "externalId": "12345" } }

// match by externalId AND email
{ "filter": { "externalId": "12345", "email": "[email protected]" } }