For the complete documentation index, see llms.txt. This page is also available as Markdown.

getChangeLog

API Version: 0.3.0

GET /dataset/{dataset}/{version}/change_log

Get change log.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

dataset

string

Dataset

version

number

version

Response

{
  "data": [
    {
      "date_time": "2019-08-24T14:15:22Z",
      "status": "success",
      "message": "string",
      "detail": "string"
    }
  ],
  "status": "success"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

Was this helpful?