Import Product
Create or update product data in Xorosoft ERP. Send the JSON payload using the field names documented in this operation and in the module export/import format used by Xorosoft ERP.
Product payload accepted by the product import endpoint.
Source system name used by integration field mapping.
Display name used by integration field mapping.
Request processed successfully.
Standard Xorosoft ERP API response envelope used by most endpoints.
True when the operation completed successfully.
Human-readable success or error message.
Current page number when paging is enabled.
Total page count when paging is enabled.
Invalid request, failed validation, or business rule error.
Missing or invalid private app credentials.
Private app does not have permission for this request.
POST /api/xerp/product/importproduct HTTP/1.1
Host: res.xorosoft.io
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 102
[
{
"Title": "Example Product",
"BasePartNumber": "EXAMPLE-PRODUCT",
"Variants": [
{
"ItemNumber": "SKU-001"
}
]
}
]{
"Result": true,
"Message": "Request processed successfully",
"Data": {}
}Last updated
Was this helpful?