Skip to main content
POST
/
api
/
metastore
/
classify
/
{catalog}
/
{schema}
/
{table}
Trigger data classification for a table
curl --request POST \
  --url https://api.example.com/api/metastore/classify/{catalog}/{schema}/{table} \
  --header 'Authorization: Bearer <token>'
{
  "correlation_id": "<string>",
  "status": "pending",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

X-Correlation-ID
string | null

Path Parameters

catalog
string
required

Catalog name.

schema
string
required

Schema name.

table
string
required

Table name.

Response

Successful Response

Response returned when a crew run is initiated.

correlation_id
string
required
status
enum<string>
default:pending
Available options:
pending,
running,
completed,
failed
message
string | null