Custom Scan
Submit Data to Classify
Use this API to submit content for classification for a given custom connecter scan job.
post/v1/jobs/{jobId}/classify-data
Path parameters
jobIdinteger required
The custom connector scan job's identifier. This value can be obtained using the Get List of Scan Jobs API.
Request body
Example request
{
"jobId": 10,
"datasourceId": "123e4567-e89b-12d3-a456-426655440000",
"structured": true,
"totalCount": 100,
"content": [
{
"entityName": "first_name",
"entityType": "COLUMN",
"parentEntityName": "Employee",
"parentEntityType": "TABLE",
"parentXpath": [
"Company, Employee"
],
"endOfContent": true,
"data": [
"Donald"
]
}
]
}Response
OK