Skip to main content
POST
/
google
/
drive
/
create-folder
Create Drive Folder
curl --request POST \
  --url https://api.adside.ai/google/drive/create-folder \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "folder_path": "<string>",
  "parent_id": "<string>"
}
'
{
  "error": "<string>",
  "code": "UNAUTHORIZED"
}

Documentation Index

Fetch the complete documentation index at: https://docs.adside.ai/llms.txt

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

Authorizations

Authorization
string
header
required

API key (sk_live_*) — SHA256 hashed, looked up in Redis. Generate via the web app's workspace settings.

Body

application/json
folder_path
string
required

Folder name or slash-separated nested path to create

parent_id
string

Optional base parent folder ID. Defaults to "root" when omitted.

Response

Created Drive folder result