Skip to main content
POST
/
v1
/
instances
/
{instance_id}
/
files
/
mkdir
curl -X POST "https://api.chowder.dev/v1/instances/ins_abc123/files/mkdir?path=skills/my-custom-skill" \
  -H "Authorization: Bearer YOUR_API_KEY"
No Content
Creates a new directory at the specified path on the instance. Parent directories are created automatically if they don’t exist (like mkdir -p).

Authentication

Requires an org-level API key or a scoped token with the appropriate permission.

Path Parameters

instance_id
string
required
The ID of the instance.

Query Parameters

path
string
required
The directory path to create, relative to the instance root.

Response

Returns 204 No Content on success.
curl -X POST "https://api.chowder.dev/v1/instances/ins_abc123/files/mkdir?path=skills/my-custom-skill" \
  -H "Authorization: Bearer YOUR_API_KEY"
No Content