Skip to main content
POST
/
projects
/
{project_reference}
/
uploads
/
folders
Create Folder
curl --request POST \
  --url https://api.veryfront.com/projects/{project_reference}/uploads/folders \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "path": "<string>",
  "visibility": "project"
}
'
{
  "path": "<string>",
  "visibility": "project"
}

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
path
string
required

Folder path (e.g., "assets/images/"). Trailing slash is added automatically.

visibility
enum<string>
default:project
Available options:
project,
public,
private

Response

Folder created

path
string
required
visibility
enum<string>
required
Available options:
project,
public,
private