Retreive the labels associated with one or more objects provided in the filterIds parameter. To return only active Labels, pass active in the filterStatuses parameter.
Data will be returned as an array of each object uuid provided in the filterIds parameter, along with the list of labelIds that are assigned to it.
NOT YET IMPLEMENTED
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 AND. If no value is supplied, active is assumed.
If caching data on the client side, the data_quantity=id_only|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/labels/select
- Server located in the USAhttps://us-api.tonicdm.com/core/labels/select
- Server located in Germanyhttps://de-api.tonicdm.com/core/labels/select
- Server located in Irelandhttps://ie-api.tonicdm.com/core/labels/select
- OAuth2
- apiKeyAuth
curl -i -X POST \
https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/labels/select \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"search_query": "string",
"filter_ids": [
"8e8aa42241794371ae9d0ed7b67a8c86"
],
"filter_statuses": [
"active"
],
"filter_object_type": "person",
"data_quantity": "id_only",
"page_size": 50,
"page_number": 0,
"sort_direction": "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 } }