v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Classification

Get List of Custom Classifiers

Use this API to retrieve a list of all custom classifiers. The response will include details such as the classifier name, ID, and detector type.

get/api/label-manager/v2/custom-classifiers

Query parameters

searchTermstring

The keyword used to search for classifiers.

The keyword used to search for classifiers.

mappedTermIdstring uuid

The ID of the mapped term.

The ID of the mapped term.

Response

Custom classifiers retrieved successfully.

idstring uuid

The unique identifier of the classifier.

codestring

The system-generated code of the classifier.

namestring

The name of the classifier.

customboolean

This flag indicates whether the classifier is custom-created.

enabledboolean

This flag indicates whether the classifier is active.

detectorType'PATTERN' | 'DICTIONARY' | 'SURROGATE' | 'VALIDATOR' | 'TEMPLATE' | 'COMPLEX'

The type of detector used by the classifier to classify data.

glossaryTermstring

The details of the glossary term associated with the classifier.

descriptionstring

The description of the classifier.

Example response

[
  {
    "code": "custom_employee_id",
    "name": "Employee Id",
    "custom": true,
    "enabled": true,
    "detectorType": "DICTIONARY",
    "glossaryTerm": "ID",
    "description": "Detect Employee ID"
  }
]