curl --request PATCH \
--url https://api.orq.ai/v2/datasets/{dataset_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"display_name": "<string>",
"project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"path": "Default"
}
'{
"_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"display_name": "<string>",
"project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"metadata": {
"total_versions": 123,
"datapoints_count": 123
},
"created_by_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"updated_by_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created": "2025-12-08T10:34:25.077Z",
"updated": "2025-12-08T10:34:25.079Z"
}Update a dataset
curl --request PATCH \
--url https://api.orq.ai/v2/datasets/{dataset_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"display_name": "<string>",
"project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"path": "Default"
}
'{
"_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"display_name": "<string>",
"project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"metadata": {
"total_versions": 123,
"datapoints_count": 123
},
"created_by_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"updated_by_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created": "2025-12-08T10:34:25.077Z",
"updated": "2025-12-08T10:34:25.079Z"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of the dataset
The display name of the dataset
The unique identifier of the project it belongs to
Entity storage path in the format: project/folder/subfolder/...
The first element identifies the project, followed by nested folders (auto-created as needed).
With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
"Default"
Dataset updated.
The unique identifier of the dataset
The display name of the dataset
The unique identifier of the project it belongs to
The unique identifier of the workspace it belongs to
The unique identifier of the user who created the dataset
The unique identifier of the user who last updated the dataset
The date and time the resource was created
The date and time the resource was last updated
Was this page helpful?