cURL
curl --request POST \ --url https://base_url/api/v1/products/bulk_upload/csv \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "file_id": "<string>", "corporation_id": "<string>" } '
{ "data": { "job": { "id": "<string>", "status": "PENDING", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } }, "message": "Successfully started product import job." }
Submit a CSV file of products for processing
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of a previously uploaded CSV file via the /files endpoint.
/files
The unique identifier for a corporation to associate with these products.
Successful product import job creation
Show child attributes
Unique identifier for the import job
Current status of the import job
PENDING
IN_PROGRESS
COMPLETED
FAILED
Timestamp when the job was created
Timestamp when the job was last updated
"Successfully started product import job."