emailAddress is the object that stores contact records in TonicDM.
If caching the Person data on the client side, the dataQuantity=idOnly option can be chosen to get the list of UUIDs that match the filtering/sorting/paging requirements, with the Person data coming from your client side cache, having been retrieved by providing the filterIds parameter with an array of id.
Returns data for the specified UUIDs. If this filter is specifed, all other filters will be ignored.
Provide the values in an array. If more than one value is given, they will be combined with OR. If no value is supplied, active is assumed.
provide the UUIDs of one or more disciplines separated by comma (no spaces). If more than one filter is given, they will be combined with AND.
Provide the UUIDs of one or more locations separated by comma (no spaces). If more than one filter is given, they will be combined with AND.
If caching data on the client side, the dataQuantity=idOnly|basic|complete option can be passed to manage the completeness of the data received and therefore rate limiting.
- Mock serverhttps://developers-internal.tonicdm.com/_mock/tonicdm-product/core/emailaddresses/select
- API server located in the USAhttps://api.us.tonicdm.com/v3/core/emailaddresses/select
curl -i -X POST \
https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/emailaddresses/select \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"searchQuery": "string",
"filterIds": [
"8e8aa42241794371ae9d0ed7b67a8c86"
],
"filterBrandIds": [
"8e8aa42241794371ae9d0ed7b67a8c86"
],
"filterStatuses": [
"active"
],
"filterDisciplineIds": [
"8e8aa42241794371ae9d0ed7b67a8c86"
],
"filterLocationIds": [
"8e8aa42241794371ae9d0ed7b67a8c86"
],
"dataQuantity": "idOnly",
"pageSize": 50,
"pageNumber": 0,
"sortByEmailAddresses": "name",
"sortDirection": "asc"
}'Successfully read the resource you requested. One or more records are returned in the form of an array.
{ "status": "success", "data": [ { … } ], "metadata": { "timestamp": "2019-08-24T14:15:22Z", "correlation_id": "string", "page": 1, "total_pages": 1, "total_records": 0 } }