v1
latestOpenAPI 3.0.12026-07-24110189356.6 KBby-key
Starts a multipart upload.
Publishes large data blobs where the data payload needs to be split into multiple parts. The multipart upload start is to be followed by the individual parts upload and completed with a call to complete the upload. The limit of the blob uploaded this way is 500GB. Max key length is 450 characters.
post/layers/{layerId}/keys/{key}
Path parameters
layerIdstring required
The ID of the parent layer for this blob.
keystring required
The key identifies a specific blob so that you can get that blob's contents. Key can only contain allowed characters: a-zA-Z0-9.[]=(){}/_-`.
Request body
Example request
{
"contentType": "application/json",
"contentEncoding": "gzip"
}Response
OK - the new multipart upload was successfully started.
Example response
{
"multipartToken": "7767cf80..."
}