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": "b45cd9ec-1201-4ac7-b408-3eff645289dd",
"MerchantId": "9c4f5ad4-7d6d-4b17-815e-7de6c9c4f912",
"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": "20a4d7d3-3b82-4dd8-9ca3-518eceb56a48",
"GrossWeight": 9.0,
"NetWeight": 10.0,
"Status": 11,
"SafetyStock": 12,
"InventoryQty": 13,
"CreateDate": "2025-12-30 14:09:13",
"UpdateDate": "2025-12-30 14:09:13",
"ActiveTimeFrom": "2025-12-30 14:09:13",
"ActiveTimeTo": "2025-12-30 14:09:13"
}
application/x-www-form-urlencoded
Sample:
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": {}
}