cURL
curl --request GET \ --url https://api.example.com/api/metastore/classify/results/{correlation_id} \ --header 'Authorization: Bearer <token>'
{ "correlation_id": "<string>", "status": "<string>", "result": { "table": { "table_fqn": "<string>", "classifications": [ "<string>" ], "confidence": 0, "rationale": "", "suggested_description": "", "suggested_glossary_terms": [ { "term_name": "<string>", "term_description": "", "is_existing": false, "term_urn": "<string>" } ], "suggested_tags": [ "<string>" ] }, "columns": [ { "column_name": "<string>", "classifications": [ "<string>" ], "confidence": 0, "rationale": "", "suggested_description": "", "suggested_glossary_terms": [ { "term_name": "<string>", "term_description": "", "is_existing": false, "term_urn": "<string>" } ], "suggested_tags": [ "<string>" ] } ] }, "error": "<string>" }
Fetch the result of a classification crew run.
The access token received from the authorization server in the OAuth 2.0 flow.
Correlation ID from classify request.
Successful Response
API response for a classification result.
Complete classification output from the crew.
Show child attributes
Was this page helpful?