curl --request POST \
--url https://api.example.com/api/metastore/classify/{catalog}/{schema}/{table}/accept \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"table": {
"accepted_classifications": [
"<string>"
],
"accepted_tags": [
"<string>"
],
"description": "<string>",
"accepted_glossary_terms": [
"<string>"
],
"new_glossary_terms": [
{
"term_name": "<string>",
"term_description": "",
"is_existing": false,
"term_urn": "<string>"
}
]
},
"columns": [
{
"column_name": "<string>",
"accepted_classifications": [
"<string>"
],
"accepted_tags": [
"<string>"
],
"description": "<string>",
"accepted_glossary_terms": [
"<string>"
],
"new_glossary_terms": [
{
"term_name": "<string>",
"term_description": "",
"is_existing": false,
"term_urn": "<string>"
}
]
}
]
}
'