Sitecore API catalog/Upload API//
- Finalize the upload process for a file
Generate an upload URL
Upload a file
Finalize the upload proce...
Finalizes the upload of a file after all chunks have been uploaded. Requires the metadata returned during the creation of the upload URL that identifies the current upload session. When finalizing the upload process, the action configured during the creation of the upload URL is performed.
Security
OAuth2
The context of the upload returned when creating the upload URL.
The identifier of the upload session returned during the request for the upload URL.
The identifier of the upload storage returned during the request for the upload URL.
- https://your-serverhttps://your-server/api/v2.0/upload/finalize
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
- application/json-patch+json
- application/json
- text/json
- application/*+json
curl -i -X POST \
https://your-server/api/v2.0/upload/finalize \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json-patch+json' \
-d '{
"upload_identifier": "string",
"storage_identifier": "string",
"file_identifier": "string"
}'