SaveProductsBulk
Saves the product data on the Global‑e system. This method is designated to be called from a Merchant’s back-end ERP system before the products are published on the Merchant’s website, to provide the data for duties and taxes calculation as soon as possible. Therefore, no end customer-specific information is expected to be provided (unlike in the SaveProductsList method mentioned in the Browsing section of this document).
Method/URL
https://{server_name}/Bulk/SaveProductsBulk
Parameters
Request
Parameter Name | Type | Description | Mandatory |
|---|---|---|---|
| String | ISO culture code. Denotes the culture for the products’ textual properties being saved (e.g. Description). If not specified, the Merchant’s default culture will be assumed by default | No |
| String | 3-char ISO currency code denoting the original currency on the Merchant’s site (before applying country coefficient and FX conversion). If not specified, the Merchant’s default currency will be assumed by default | No |
| List of | List of Product objects (specified in the request body) |
Response
Parameter Name | Type | Description | Mandatory |
|---|---|---|---|
| Object | Provides details regarding the API call response |
Example
Request
[
{
"ProductCode":"1020872",
"Name":"Lanolin",
"Description":"Breast%20Feeding%20Ointment",
"GenericHSCode":"",
"OriginCountryCode":"",
"Weight":"1.0000",
"Height":null,"Length":null,
"Volume":"60",
"ImageURL":"\/a\/3\/a3c9ef_ece3bec0467310603bce72e9a58e33d3.jpg",
"ImageHeight":"",
"ImageWidth":"",
"ListPrice":"25.0000",
"OriginalListPrice":"17.7000",
"SalePrice":"15.0000",
"OriginalSalePrice":"17.7000",
"VATRateType":{
"VATRateTypeCode":1,
"Name":"Low",
"Rate":"18.0000"},
"Brand":{
"BrandCode":"7",
"Name":"Brand2"
},
"Categories":[
{
"CategoryCode":"3",
"Name":"Maternity"
}
],
"Attributes":[
{
"AttributeCode":"c034",
"Name":"Red",
"AttributeTypeCode":"colo
},
{
"AttributeCode":"s23",
"Name":"XXL",
"AttributeTypeCode":"size"
}
]
}
]