Skip to main content
POST
/
v1
/
datasets-v2
/
{datasetId}
/
versions
/
{versionId}
/
restore
Restore dataset to a previous version
curl --request POST \
  --url https://api.lunary.ai/v1/datasets-v2/{datasetId}/versions/{versionId}/restore \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "ownerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "ownerName": "<string>",
  "ownerEmail": "<string>",
  "name": "<string>",
  "description": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "itemCount": 123,
  "currentVersionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "currentVersionNumber": 123,
  "currentVersionCreatedAt": "2023-11-07T05:31:56Z",
  "currentVersionCreatedBy": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "currentVersionRestoredFromVersionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "datasetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "input": "<string>",
      "groundTruth": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

datasetId
string<uuid>
required
versionId
string<uuid>
required

Response

200 - application/json

Restored dataset with current items

id
string<uuid>
projectId
string<uuid>
ownerId
string<uuid> | null
ownerName
string | null
ownerEmail
string | null
name
string
description
string | null
createdAt
string<date-time>
updatedAt
string<date-time>
itemCount
integer
currentVersionId
string<uuid> | null
currentVersionNumber
integer
currentVersionCreatedAt
string<date-time> | null
currentVersionCreatedBy
string<uuid> | null
currentVersionRestoredFromVersionId
string<uuid> | null
items
object[]