post https://rls.congacloud.com/api/filestore/v1/files/multipart-uploads/complete
This endpoint is the final step in the multipart upload workflow:
- Start with InitiateMultipartUploadAsync to get an uploadId
- Upload individual parts with UploadPartAsync
- Complete the process with this endpoint
The request requires the uploadId from the initial request and a dictionary of part numbers
mapped to their ETags (received when each part is uploaded). This allows the system to
verify all parts and combine them in the correct order.
If successful, the file will be available at the specified file path.