File Upload With Signed URLs
For security reasons, the URLs used in the file upload process are signed and have an expiration time.
To complete the file upload process, please execute the following request. This request will use the signed URLs obtained in the previous step to upload the file(s) to the server.
put
To upload the file data, make a PUT request to the signed URL provided in the /uploads endpoint. The binary file data should be included in the request body.
Authorizations
Body
string · binaryOptional
Responses
200
OK
403
Forbidden
404
Not Found
put
PUT / HTTP/1.1
Host: [file_upload_url]
Content-Type: file
Accept: */*
Content-Length: 8
"binary"
No content
Once a status code 200
is received, the upload is considered complete. In other cases, please follow the error codes
provided in the response
Last updated