Files
Last updated
Last updated
GET /api/download?url=text HTTP/1.1
Accept: */*
{
"downloadUrl": "text"
}POST /api/upload HTTP/1.1
Content-Type: multipart/form-data
Accept: */*
Content-Length: 36
{
"file": "binary",
"files": [
"binary"
]
}{
"status": "success",
"results": [
{
"status": "success",
"message": "text",
"url": "https://example.com",
"fileId": 1,
"fileName": "text",
"fileSize": 1,
"mimeType": "text",
"arWorldUrl": "https://example.com"
}
]
}POST /api/upload/presigned HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 40
{
"fileName": "text",
"contentType": "text"
}{
"uploadUrl": "text",
"key": "text",
"url": "text"
}