BasicAI CE Open & Plugin API
  1. Dataset
BasicAI CE Open & Plugin API
  • Open API
    • Dataset
      • Create Dataset
        POST
      • Edit Dataset
        POST
      • Delete Dataset
        POST
      • Query a single dataset
        GET
      • Query the list of datasets
        GET
      • Upload the dataset compressed package
        POST
      • Query the processing progress of the compressed dataset
        GET
      • Query the data under the dataset
        GET
      • Delete multiple data
        POST
      • Query a single data
        GET
      • Query multiple data
        GET
      • Generate presigned file upload url
        GET
      • Upload file through presigned url
        PUT
    • Annotation
      • Get data and result information
      • Download dataset annotation results
    • Model
      • Image object detection
      • Point cloud object detection
  • Plugin API
    • Model
      • Point cloud object detection
      • Image object detection
  1. Dataset

Query the processing progress of the compressed dataset

Docker Compose
http://localhost:8190/api
Docker Compose
http://localhost:8190/api
GET
http://localhost:8190/api
/data/findUploadRecordBySerialNumbers

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
serialNumbers
array[string]
required
Example:
["1564800049748869120"]

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:8190/api/data/findUploadRecordBySerialNumbers?serialNumbers=1564800049748869120'

Responses

🟢200Successful
application/json
Body
code
string 
required
message
string 
required
data
array [object {8}] 
required
id
string 
optional
serialNumber
string 
Serial number
optional
errorMessage
null 
Error message
optional
totalFileSize
string 
File size
optional
downloadedFileSize
string 
Downloaded file size
optional
totalDataNum
string 
Total data size
optional
parsedDataNum
string 
Parsed data size
optional
status
string 
Status
optional
UNSTARTED,DOWNLOADING,DOWNLOAD_COMPLETED,PARSING,PARSE_COMPLETED,FAILED
Example
{
  "code": "string",
  "message": "string",
  "data": [
    {
      "id": "string",
      "serialNumber": "string",
      "errorMessage": null,
      "totalFileSize": "string",
      "downloadedFileSize": "string",
      "totalDataNum": "string",
      "parsedDataNum": "string",
      "status": "string"
    }
  ]
}
Previous
Upload the dataset compressed package
Next
Query the data under the dataset
Built with