CompleteDataRoomDocumentMultiPartUploadInput
Used to finalize a multi-part document upload to the Data Room. After all individual parts have been successfully uploaded, this input is passed to a mutation to signal completion, allowing the system to assemble the full document.
input CompleteDataRoomDocumentMultiPartUploadInput {
id: ID!
parts: [CompletedUploadPartInput!]!
}
Fields
CompleteDataRoomDocumentMultiPartUploadInput.id
● ID!
non-null scalar
The upload session ID associated with the document being uploaded. This ID is typically returned by the upload initiation mutation.
CompleteDataRoomDocumentMultiPartUploadInput.parts
● [CompletedUploadPartInput!]!
non-null input
A list of uploaded parts, each including a part number and an ETag (or similar identifier). All parts must be present and correctly ordered for successful completion.