Skip to content

Upload​


POST /api/v2/upload​

POST
/api/v2/upload

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

JSON
{
  
"area": "string",
  
"item": "string",
  
"file": {
  
  
"name": "string",
  
  
"data": "string"
  
}
}

Responses​

The file was succesfully uploaded.

application/json
JSON
{
  
"count": 0,
  
"data": {
  
  
"url": "string"
  
}
}

Playground​

Authorization
Body

Samples​


DELETE /api/v2/upload​

DELETE
/api/v2/upload

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

application/json
JSON
{
  
"area": "string",
  
"item": "string"
}

Responses​

The file was succesfully uploaded.

application/json
JSON
{
  
"count": 0,
  
"data": [
  
  
{
  
  
  
"item": "string",
  
  
  
"status": "string",
  
  
  
"object": {
  
  
  
  
"url": "string"
  
  
  
},
  
  
  
"error": "string"
  
  
}
  
]
}

Playground​

Authorization
Body

Samples​


POST /api/v2/upload/bulk​

POST
/api/v2/upload/bulk

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

JSON
{
  
"area": "string",
  
"items": [
  
  
{
  
  
  
"item": "string",
  
  
  
"file": {
  
  
  
  
"name": "string",
  
  
  
  
"data": "string"
  
  
  
}
  
  
}
  
]
}

Responses​

The file was succesfully uploaded.

application/json
JSON
{
  
"count": 0,
  
"data": [
  
  
{
  
  
  
"item": "string",
  
  
  
"status": "string",
  
  
  
"object": {
  
  
  
  
"url": "string"
  
  
  
},
  
  
  
"error": "string"
  
  
}
  
]
}

Playground​

Authorization
Body

Samples​


Powered by VitePress OpenAPI