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

Edit Dataset

Docker Compose
http://localhost:8190/api
Docker Compose
http://localhost:8190/api
POST
http://localhost:8190/api
/dataset/update/{id}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
integer 
required
ID
Example:
750009
Body Params application/json
ID
integer 
ID
required
Name
string 
Name
required
Description 
string  | null 
Description
optional
Example
{
    "ID": 0,
    "Name": "string",
    "Description ": "string"
}

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/update/750009' \
--header 'Content-Type: application/json' \
--data-raw '{
    "ID": 0,
    "Name": "string",
    "Description ": "string"
}'

Responses

🟢200Successful
application/json
Body
code
string 
Error code
required
Error code. OK means success, the rest are failures
message
string 
Error description
required
Error description. It can be empty
data
object 
Data
required
Example
{
    "code": "OK",
    "message": "",
    "data": null
}
Modified at 2023-01-04 10:36:34
Previous
Create Dataset
Next
Delete Dataset
Built with