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

Create Dataset

Docker Compose
http://localhost:8190/api
Docker Compose
http://localhost:8190/api
POST
http://localhost:8190/api
/dataset/create

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
name
string 
Name
required
type
string 
Type
required
LIDAR_FUSION, LIDAR_BASIC, IMAGE
description
string 
Description
required
Example
{
  "name": "Test",
  "type": "IMAGE",
  "description": "This is a test again."
}

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 POST 'http://localhost:8190/api/dataset/create' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Test",
    "type": "IMAGE",
    "description": "This is a test again."
}'

Responses

🟢200Successful
application/json
Body
code
string 
required
message
string 
required
data
object 
required
id
integer 
Dataset ID
required
name
string 
Dataset name
required
type
string 
Type
required
description
string 
Discription
required
Example
{
  "code": "OK",
  "message": "",
  "data": {
    "id": 766400,
    "name": "Test name",
    "type": "IMAGE",
    "description": "This is a test"
  }
}
Next
Edit Dataset
Built with