Resumable upload (TUS protocol)
POST
/api/items/upload
const url = 'https://example.com/api/items/upload';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/items/upload \ --header 'Authorization: Bearer <token>'TUS resumable upload endpoint. Handles the full TUS protocol (POST to create, PATCH to upload chunks, HEAD to resume). Requires OCI storage.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”TUS protocol response
Storage backend does not support resumable uploads