Skip to content

Get all bulk import parts

Request

Retrieves a list of bulk import parts from a specified bulk import.

Security
ApiKeyAuth
Path
bulk_import_namestring(name)required
curl -i -X GET \
  'https://api.treasuredata.com/v3/bulk_import/list_parts/{bulk_import_name}' \
  -H 'Authorization: TD1 <YOUR_TOKEN_HERE>'

Responses

OK

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

unique identifier of job

Example:19
partsArray of strings(BulkImportPartName)
Example:
[ "part_1" ]
Response
{ "bulk_import": "string", "name": "string", "job_id": 19, "parts": [ "part_1" ] }