Transfer Tickets
Create an upload transfer ticket
Creates either:
- a single PUT upload ticket for smaller files, or
- a multipart upload session for larger files.
The client supplies sizeBytes and the API decides which upload path to use.
post/transfer-tickets
Request body
Example request
{
"clientId": "products-poc",
"fileName": "example-upload.csv",
"contentType": "text/csv",
"sizeBytes": 12345,
"requestedExpirySeconds": 900,
"contentMd5": "CY9rzUYh03PK3k6DJie09g=="
}Response
Upload session created
Example response
{
"upload": {
"method": "PUT"
}
}