Skip to content

Upload bulk import part

Request

Uploads the specified part of the specified bulk import.

Security
ApiKeyAuth
Path
bulk_import_namestring(name)required
bulk_import_part_namestring(BulkImportPartName)required
Example:part_1
Bodyapplication/x-www-form-urlencoded
partstring, (binary)required
curl -i -X PUT \
  'https://api.treasuredata.com/v3/bulk_import/upload_part/{bulk_import_name}/part_1' \
  -H 'Authorization: TD1 <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d part=string

Responses

OK

Bodyapplication/json
bulk_importstring(name)required
namestring(name)required
job_idinteger(JobId)

unique identifier of job

Example:19
Response
{ "bulk_import": "string", "name": "string", "job_id": 19 }