Append

Upload a chunk of data for the specified upload.

post

Upload a stream of data to upload without completing the upload.

Authorizations
Path parameters
idstringrequired

The universally unique identifier (UUID).

Example: 52e51422-573d-4fc9-b5c6-4a30058f5d71
Header parameters
PortSIP-Upload-Tokenstringrequired

The upload token of file upload.

Body
string · binaryoptional
Responses
curl -L \
  --request POST \
  --url 'https://HOSTNAME:8887/api/blobs/uploads/{id}/append' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --header 'PortSIP-Upload-Token: text' \
  --header 'Content-Type: application/octet-stream' \
  --data '"binary"'

No body

Was this helpful?