v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Personal Data

Create Data Category

Use this API to to create new Data Categories in Data Mapping Automation module.

post/api/inventory/v2/data-categories

Query parameters

generatorstring

Optional generator parameter

Request body

valuestring required

Name of the personal data entity

descriptionstring

Description of the personal data entity

status'Active' | 'Inactive' | 'Draft'

Status of the personal data entity

termIdstring uuid

ID of the associated term

tagIdstring uuid

ID of the associated tag

Example request

{
  "value": "Financial Data",
  "description": "Category for financial information",
  "status": "Active"
}

Response

Created

descriptionstring

Description of the Data Category.

descriptionKeystring

Unique key for description of the Data Category.

idstring

Unique Id for the Data Category.

namestring

Name of the Data Category.

nameKeystring

Unique key for name of the Data Category.

Example response

{
  "description": "Academic Background",
  "descriptionKey": "DataCategoriesAcademicBackgroundDesc",
  "id": "43fd3a8d-3f6b-464e-bf43-3f0c6c592442",
  "name": "Academic Background",
  "nameKey": "DataCategoriesAcademicBackground"
}