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": "5d612172-1f17-40a8-9ba4-43aad211330d",
"MerchantId": "f01a8686-e4d2-4320-801d-6a3eeae2192e",
"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": "d8c1f3ef-880d-4db4-9c9b-a3a899eb968e",
"GrossWeight": 9.0,
"NetWeight": 10.0,
"Status": 11,
"SafetyStock": 12,
"InventoryQty": 13,
"CreateDate": "2026-02-24 14:21:27",
"UpdateDate": "2026-02-24 14:21:27",
"ActiveTimeFrom": "2026-02-24 14:21:27",
"ActiveTimeTo": "2026-02-24 14:21:27"
}
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": {}
}