# Search classifiers Endpoint: POST /classifiers/search Version: 5.1.43 Security: api_key ## Query parameters: - `page_number` (integer) The page number for which to get classifiers. This will default to the first page if excluded - `page_size` (integer) The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided - `sort` (string) The field to sort results by. A property name with a prepended '-' signifies a descending order. Enum: "classifierId", "-classifierId", "classifierName", "-classifierName", "frameworkId", "-frameworkId", "createdDate", "-createdDate", "domainName", "-domainName", "description", "-description" ## Response 200 fields (application/json): - `_pageInfo` (object) - `_pageInfo.numberOnPage` (integer) The number of items on this page. This should always match the page size unless it is the last page. - `_pageInfo.total` (integer) The total number of items - `responseList` (array) Example: [{"classifierName":"MyClassifier","description":"Detects my sensitive data","frameworkId":1,"domainName":"MyDomain","classifierConfiguration":{"dataPatterns":[{"regex":"[A-Za-z0-9]*","matchStrength":0.1}]}}] - `responseList.classifierId` (integer) The ID of the classifier. This will be generated by the Masking Engine. - `responseList.classifierName` (string, required) The name of this classifier. Note that it must be unique. Example: "MyClassifier" - `responseList.description` (string) The description of the classifier. Example: "Detects my sensitive data" - `responseList.frameworkId` (integer) The id of the classifier framework. Example: 1 - `responseList.domainName` (string) The name of the domain that will be assigned to the column/field when a profile expression match is found during the execution of a profile job. Example: "MyDomain" - `responseList.createdBy` (string) The user that created the profile expression. This field is auto-generated by the Masking Engine. - `responseList.classifierConfiguration` (object) Example: {"dataPatterns":[{"regex":"[A-Za-z0-9]*","matchStrength":0.1}]} ## Response 400 fields ## Response 409 fields