- Introduction
- Getting started
- Webhooks
- API Reference
- Order
- Shipping Method
- Product
- Variant
- Payment Method
- Customer
- Category
- Currency
Create products batch
POST
/products/batch
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
X-Identifier
string
optional
Example:
{{x_identifier}}
Authorization
string
optional
Example:
Bearer {{token}}
Accept
string
optional
Example:
application/json
Content-Type
string
optional
Example:
application/json
Body Params application/json
products
array [object {18}]
required
status
enum<string>
required
Allowed values:
draftpublishedinactivepending_retirementretired
meta_title
string
optional
meta_description
string
optional
name
string
required
external_reference
string
optional
description
string
optional
short_description
string
optional
slug
string
optional
hs_code
string
optional
country_of_origin
string
optional
vat_rate
enum<integer>
optional
Allowed values:
250012006000
variants
array [object {10}]
required
type
enum<string>
required
Allowed values:
standardinventory_itempre_order_item
categories
array [object {3}]
optional
brand_name
string
optional
supplier_name
string
optional
filter_tags
array[string]
optional
images
array[string]
optional
Example
{
"products": [
{
"status": "draft",
"meta_title": "Metis titilus",
"meta_description": "Metus deskriptus",
"name": "namn 2024-09-03",
"external_reference": "Ext reffe",
"description": "produktbeskrivningen",
"short_description": "Kort beskrivning",
"slug": "slug",
"hs_code": "12312321",
"country_of_origin": "SE",
"vat_rate": 1200,
"variants": [
{
"sku": "testing2991",
"stock": "291",
"weight": "2500",
"stock_price": 100.01,
"package_size": 2,
"supplier_sku": "Lev-art-100",
"gtin": "Gtion-valle",
"prices": [
{
"price": 100,
"compare_price": 125,
"tier": 1,
"customer_group_id": null,
"currency_id": 1
}
],
"options": [
{
"type": "Färg",
"value": "Blå"
},
{
"type": "Färg",
"value": "Röd"
},
{
"type": "Storlek",
"value": "S"
},
{
"type": "Storlek",
"value": "M"
},
{
"type": "Storlek",
"value": "L"
}
]
}
],
"type": "inventory_item",
"categories": [
{
"name": "Jul",
"update_on_exists": false
},
{
"name": "kaosdkasd",
"external_identifier": "api-1",
"update_on_exists": false
},
{
"name": "hejsan",
"external_identifier": "api-1",
"update_on_exists": false
}
],
"brand_name": "Varumärke",
"supplier_name": "Leverantör",
"filter_tags": [
"Färg_Blå, Färg_Röd"
],
"images": []
}
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/products/batch' \
--header 'X-Identifier: {{x_identifier}}' \
--header 'Authorization: Bearer {{token}}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"products": [
{
"status": "draft",
"meta_title": "Metis titilus",
"meta_description": "Metus deskriptus",
"name": "namn 2024-09-03",
"external_reference": "Ext reffe",
"description": "produktbeskrivningen",
"short_description": "Kort beskrivning",
"slug": "slug",
"hs_code": "12312321",
"country_of_origin": "SE",
"vat_rate": 1200,
"variants": [
{
"sku": "testing2991",
"stock": "291",
"weight": "2500",
"stock_price": 100.01,
"package_size": 2,
"supplier_sku": "Lev-art-100",
"gtin": "Gtion-valle",
"prices": [
{
"price": 100.00,
"compare_price": 125.00,
"tier": 1,
"customer_group_id": null,
"currency_id": 1
}
],
"options": [
{
"type": "Färg",
"value": "Blå"
},
{
"type": "Färg",
"value": "Röd"
},
{
"type": "Storlek",
"value": "S"
},
{
"type": "Storlek",
"value": "M"
},
{
"type": "Storlek",
"value": "L"
}
]
}
],
"type": "inventory_item",
"categories": [
{
"name": "Jul",
"update_on_exists": false
},
{
"name": "kaosdkasd",
"external_identifier": "api-1",
"update_on_exists": false
},
{
"name": "hejsan",
"external_identifier": "api-1",
"update_on_exists": false
}
],
"brand_name": "Varumärke",
"supplier_name": "Leverantör",
"filter_tags": ["Färg_Blå, Färg_Röd"],
"images": []
}
]
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-11-01 09:13:10