GET
/
v0
/
project
/
{project_name}
/
contexts
/
{context_name}
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_id_column": false,
    "unique_id_names": "row_id"
}
Get information about a specific context including its versioning status and current version.

Authorizations

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_name
string
required
Name of the project containing the context.
context_name
string
required
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_id_column": false,
    "unique_id_names": "row_id"
}