curl --request POST \
--url https://api.mudstack.com/workspaces/import/upload/complete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-account-id: <x-account-id>' \
--header 'x-workspace-id: <x-workspace-id>' \
--data '
{
"upload_id": "<string>",
"key": "<string>",
"upload_parts": [
{
"ETag": "<string>",
"PartNumber": 123
}
],
"checksum": {
"algorithm": "CRC32",
"value": "<string>"
}
}
'