Object Storage

get
Authorizations
Query parameters
afterstringOptional
limitnumberOptional
Responses
200Success
application/json
Responseall of
and
get
GET /v1/object-storages HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
200Success
{
  "paging": {
    "next": {
      "after": "text"
    }
  },
  "data": [
    {
      "id": "text",
      "name": "text"
    }
  ]
}
get
Authorizations
Path parameters
objectStorageIdstringRequired
Responses
200Success
application/json
get
GET /v1/object-storages/{objectStorageId} HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
200Success
{
  "id": "text",
  "name": "text"
}
post
Authorizations
Path parameters
objectStorageIdstringRequired
Query parameters
pathstringOptional
Responses
200Success
application/json
post
POST /v1/object-storages/{objectStorageId}/upload HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
200Success
{
  "filePath": "text",
  "sizeKb": 1,
  "storage": "text"
}
get
Authorizations
Path parameters
objectStorageIdstringRequired
Query parameters
pathstringRequired
Responses
200Success
get
GET /v1/object-storages/{objectStorageId}/download?path=text HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
200Success

No content

Last updated

Was this helpful?