Skip to content

Get Status

GEThttps://portal-prod.rosettalab.top/rosetta-open/dataset/status

This page will help you get the status of a dataset.

query params

*datasetIdstring
Dataset id which returned by Upload Dataset or Import Dataset.
Examples
shell
curl https://portal-prod.rosettalab.top/rosetta-open/dataset/status \
 -X GET \
 -H "Content-Type: application/json" \
 -H "X-STARDUST-KEY: <X-STARDUST-KEY>" \
 -H "X-TS: <X-TS>" \
 -H "X-SIGN: <X-SIGN>"

response data

statusinteger
1 represents BUILDING, 2 represents READY, -1 represents ERROR
datasetIdstring
Dataset id passed in
mappingListobject[]
Mapping list between data id and scene id
*dataIdstring
Data Entry Id in our platform
*sceneIdstring
Data Entry Id from your file

examples

200
{
"code": 200,
"message": "Success",
"data": {
"status": 2,
"datasetId": "1",
"mappingList": [...]
},
"date": "2024-05-17 16:04:53",
"requestId": "71c3ddd6171593314607810011afb4",
"success": true
}
400
{
"code": 400,
"data": null,
"message": "Illegal Parameter",
"date": "2024-05-17 16:04:53",
"requestId": "71c3ddd6171593314607810011afb4",
"success": false
}