POST
/
api
/
trpc
/
datasets.createDataset
curl --request POST \
  --url https://analytics.toolzz.ai/api/trpc/datasets.createDataset
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "metadata": null,
  "projectId": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}
Request Exemple
{
  "name": "string",
  "description": "string",
  "metadata": null
}

Response Description

Below you will see the description of the create dataset response

id
string
required

Unique identifier for the entity.

name
string
required

Name of the entity.

description
string
required

Description of the entity.

metadata
null

Metadata associated with the entity (optional).

projectId
string
required

Unique identifier for the project associated with the entity.

createdAt
Date
required

Timestamp indicating when the entity was created.

updatedAt
Date
required

Timestamp indicating when the entity was last updated.