Get document's data classification
GET/documents/:documentId/dataClassification
Retrieve an document's data classification; available as an Add-On Module
Request
Path Parameters
documentId stringrequired
Document Identifier
Query Parameters
siteId string
Site Identifier
limit string
Limit Results
Default value:
10next string
Next page of results token
Responses
- 200
200 OK
Response Headers
Access-Control-Allow-Origin
string
Access-Control-Allow-Methods
string
Access-Control-Allow-Headers
string
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
next string
Next page of results token
dataClassifications
object[]
List of Data Classifications
llmPromptEntityName string
Name of the LLM Prompt Entity
insertedDate string
Inserted Timestamp
content string
Result content
userId string
UserId that created Result
attributes
object[]
Attributes extracted from result content
key string
Data Classification Attribute Key
value string
Data Classification Attribute Value
{
"next": "string",
"dataClassifications": [
{
"llmPromptEntityName": "string",
"insertedDate": "string",
"content": "string",
"userId": "string",
"attributes": [
{
"key": "string",
"value": "string"
}
]
}
]
}
Loading...