POST
/
v0
/
project
/
{project_name}
/
commit
curl --request POST \
  --url 'https://api.unify.ai/v0/project/proj/a/commit' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "info": "Project committed successfully!",
    "commit_hash": "..."
}

Creates a new version of a project.

Authorizations

Authorization
string
required

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

Path Parameters

project_name
string
required

Project name, may contain slashes

Body

commit_message
string | null
curl --request POST \
  --url 'https://api.unify.ai/v0/project/proj/a/commit' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "info": "Project committed successfully!",
    "commit_hash": "..."
}