Get information about a specific context including its versioning status and current version.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Name of the project containing the context.
Name of the context to retrieve.
curl --request GET \
--url 'https://api.unify.ai/v0/project/my_project/contexts/my_context' \
--header "Authorization: Bearer $UNIFY_KEY"
{
"name": "context1",
"description": "description1",
"is_versioned": true,
"allow_duplicates": true,
"unique_keys": [
"row_id"
],
"auto_counting": {}
}