Debriefer

Create a dataset

POST
/api/v1/datasets

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://loading/api/v1/datasets" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{
  "id": "string",
  "organization_id": "string",
  "name": "string",
  "description": "string",
  "item_count": -2147483648,
  "metadata": {
    "property1": null,
    "property2": null
  },
  "created_at": "string",
  "updated_at": "string",
  "object": "dataset"
}