POST Api/Input/InputProduct
Request Information
URI Parameters
None.
Body Parameters
ProductInputModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| MerchantId | globally unique identifier |
None. |
|
| ProductCode | string |
None. |
|
| ProductNames | Collection of KeyValue |
None. |
|
| PageTitles | Collection of KeyValue |
None. |
|
| SeoKeywords | Collection of KeyValue |
None. |
|
| SeoDescs | Collection of KeyValue |
None. |
|
| ProductBriefs | Collection of KeyValue |
None. |
|
| ProductDetail | Collection of KeyValue |
None. |
|
| CurrencyCode | string |
None. |
|
| SalePrice | decimal number |
None. |
|
| OriginalPrice | decimal number |
None. |
|
| MarkupPrice | decimal number |
None. |
|
| Category | globally unique identifier |
None. |
|
| GrossWeight | decimal number |
None. |
|
| NetWeight | decimal number |
None. |
|
| Status | integer |
None. |
|
| SafetyStock | integer |
None. |
|
| InventoryQty | integer |
None. |
|
| CreateDate | date |
None. |
|
| UpdateDate | date |
None. |
|
| ActiveTimeFrom | date |
None. |
|
| ActiveTimeTo | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "1f319eef-d5fd-484c-a60e-f5ae766c17e4",
"MerchantId": "f928562a-c9c2-4878-908b-3fd39cb8d0f9",
"ProductCode": "sample string 3",
"ProductNames": [
{
"Id": "sample string 1",
"Text": "sample string 2"
},
{
"Id": "sample string 1",
"Text": "sample string 2"
}
],
"PageTitles": [
{
"Id": "sample string 1",
"Text": "sample string 2"
},
{
"Id": "sample string 1",
"Text": "sample string 2"
}
],
"SeoKeywords": [
{
"Id": "sample string 1",
"Text": "sample string 2"
},
{
"Id": "sample string 1",
"Text": "sample string 2"
}
],
"SeoDescs": [
{
"Id": "sample string 1",
"Text": "sample string 2"
},
{
"Id": "sample string 1",
"Text": "sample string 2"
}
],
"ProductBriefs": [
{
"Id": "sample string 1",
"Text": "sample string 2"
},
{
"Id": "sample string 1",
"Text": "sample string 2"
}
],
"ProductDetail": [
{
"Id": "sample string 1",
"Text": "sample string 2"
},
{
"Id": "sample string 1",
"Text": "sample string 2"
}
],
"CurrencyCode": "sample string 4",
"SalePrice": 5.0,
"OriginalPrice": 6.0,
"MarkupPrice": 7.0,
"Category": "77e95ed4-9e1e-4675-965b-a7d0d6829825",
"GrossWeight": 9.0,
"NetWeight": 10.0,
"Status": 11,
"SafetyStock": 12,
"InventoryQty": 13,
"CreateDate": "2025-10-28 19:00:22",
"UpdateDate": "2025-10-28 19:00:22",
"ActiveTimeFrom": "2025-10-28 19:00:22",
"ActiveTimeTo": "2025-10-28 19:00:22"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SystemResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Succeeded | boolean |
None. |
|
| Message | string |
None. |
|
| ReturnValue | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Succeeded": true,
"Message": "sample string 2",
"ReturnValue": {}
}