Skip to main content
POST
/
projects
/
{project_reference}
/
releases
Create Release
curl --request POST \
  --url https://api.veryfront.com/projects/{project_reference}/releases \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "v1.0.0"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "project": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "export_status": "in_progress",
  "build_status": "in_progress",
  "deploy_status": "in_progress",
  "version": "<string>",
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "<string>",
  "updated_at": "<string>"
}

Authorizations

Authorization
string
header
required

Authentication via JWT token or API key. JWT: Get from Veryfront dashboard. API Key: Format "vf__" - create via /api-keys endpoint.

Path Parameters

project_reference
string
required

Project ID or slug

Body

application/json
name
string

Name for the release (auto-generated if not provided)

branch_reference
string

Branch ID (UUID) or branch name. If not provided, creates release from main branch.

Response

Release created

id
string<uuid>
required
name
string
required
project
string<uuid>
required
export_status
enum<string>
required
Available options:
in_progress,
completed,
error
build_status
enum<string>
required
Available options:
in_progress,
completed,
error
deploy_status
enum<string>
required
Available options:
in_progress,
completed,
error
version
string | null

Semver version (e.g., "1.2.3")

user_id
string<uuid>
created_at
string
updated_at
string