Upload test (informational)
GET
/api/items/upload/test
const url = 'https://example.com/api/items/upload/test';const options = {method: 'GET', 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 GET \ --url https://example.com/api/items/upload/test \ --header 'Authorization: Bearer <token>'Not implemented for GET. Use POST /api/items/upload/test to test a resumable upload.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Informational message
Media typeapplication/json
object
message
required
Human-readable status message
string
Example
{ "message": "Sync Process Started"}