POST
/
v0
/
project
/
{project_name}
/
contexts
/
{context_name}
/
commit
curl --request POST \
  --url 'https://api.unify.ai/v0/project/<project_name>/contexts/<context_name>/commit' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
{}

Creates a new version snapshot for a specific context.

Authorizations

Authorization
string
required

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

Path Parameters

project_name
string
required
context_name
string
required

Body

commit_message
string | null
curl --request POST \
  --url 'https://api.unify.ai/v0/project/<project_name>/contexts/<context_name>/commit' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
{}