Skip to main content
POST
/
datasets
Create dataset
curl --request POST \
  --url https://app.azalt.co/api/v1/datasets \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "isCommon": true
}
'
{
  "id": "<string>",
  "name": "<string>",
  "organizationId": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required
isCommon
boolean

Response

Successful response

id
string
required
name
string
required
organizationId
string | null
required
createdAt
string
required
updatedAt
string
required