v1
latestOpenAPI 3.0.12026-07-24110189356.6 KBStarts a multipart upload of a blob and returns URLs for the next multipart upload operations. The URLs contain the upload token.
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 50GB.
Path parameters
The ID of the layer that the data blob belongs to.
The data handle (ID) represents an identifier for the data blob which contents will be persisted. The data handle can only contain alphanumeric, '-' and '.' characters, [0-9, a-z, A-Z, -, .]. The maximum length of this field is 600 characters.
Query parameters
Billing Tag is an optional free-form tag which is used for grouping billing records together. If supplied, it must be between 4 - 16 characters, contain only alpha/numeric ASCII characters [A-Za-z0-9]. Grouping billing records by billing tag will be available in future releases.
Request body
Example request
{
"contentType": "application/json"
}Response
OK - the new multipart upload was successfully started.
Example response
{
"links": {
"complete": {
"href": "/blobstore/.../data/e02851bf4/multiparts/7767cf80...",
"method": "PUT"
},
"delete": {
"href": "/blobstore/.../data/e02851bf4/multiparts/7767cf80...",
"method": "DELETE"
},
"status": {
"href": "/blobstore/.../data/e02851bf4/multiparts/7767cf80...",
"method": "GET"
},
"uploadPart": {
"href": "/blobstore/.../data/e02851bf4/multiparts/7767cf80.../parts",
"method": "POST"
}
}
}