Bulk Products Import
Upload bulk products
Sales Tax API
Core Concepts
Corporations
Calculate
Transactions
- Tax Transactions
- POSTCreate a transaction
- GETGet transaction
- GETList transactions
- DELDelete transaction
- Refund Transactions
- Bulk Transaction Import
Nexus
Registrations
Products
Customers
Exemption Certificates
Bulk Products Import
Upload bulk products
Submit a CSV file of products for processing
POST
/
products
/
bulk_upload
/
csv
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."
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
Successful product import job creation
The response is of type object
.
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."
}