Skip to main content
POST
/
api
/
v1
/
folders
curl --request POST \
  --url 'https://upload.autorender.io/api/v1/folders' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "demo2",
  "parent_folder_no": "sD1LvqoDzG"
}'
{
  "name": "demo2",
  "folder_no": "dejfjijf"
}

Documentation Index

Fetch the complete documentation index at: https://autorender.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

curl --request POST \
  --url 'https://upload.autorender.io/api/v1/folders' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "demo2",
  "parent_folder_no": "sD1LvqoDzG"
}'
{
  "name": "demo2",
  "folder_no": "dejfjijf"
}

Overview

Creates a new folder. Send name and optionally parent_folder_no to nest under an existing folder.

Request body

FieldTypeRequiredDescription
namestringYesFolder name
parent_folder_nostringNoParent folder number; omit for root

Response

Short payload with name and folder_no of the created folder.

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required

Folder display name

parent_folder_no
string

Parent folder number; omit or null for root

Response

Created folder

name
string
folder_no
string