- Open API
- Dataset
- Create DatasetPOST
- Edit DatasetPOST
- Delete DatasetPOST
- Query a single datasetGET
- Query the list of datasetsGET
- Upload the dataset compressed packagePOST
- Query the processing progress of the compressed datasetGET
- Query the data under the datasetGET
- Delete multiple dataPOST
- Query a single dataGET
- Query multiple dataGET
- Generate presigned file upload urlGET
- Upload file through presigned urlPUT
- Annotation
- Model
- Plugin API
Create Dataset
Docker Compose
Docker Compose
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
type
string
Type
description
string
Description
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
name
string
Dataset name
type
string
Type
description
string
Discription
Example
{
"code": "OK",
"message": "",
"data": {
"id": 766400,
"name": "Test name",
"type": "IMAGE",
"description": "This is a test"
}
}
Modified at 2023-01-04 10:36:30