Skip to main content
POST
/
user-services
/
create-dataset
Create Dataset
curl --request POST \
  --url https://api.zo.computer/user-services/create-dataset \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "title": "<string>",
  "parent_path_parts": [
    "<string>"
  ]
}
'
{
  "data": {
    "path": "<string>",
    "name": "<string>",
    "title": "<string>"
  },
  "error": {
    "message": "<string>",
    "kind": "error",
    "code": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Zo API key (zo_sk_...)

Body

application/json
name
string
required
title
string | null
parent_path_parts
string[] | null

Response

Successful Response

data
CreatedDataset · object
error
ToolError · object