POST AdminApi/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": "4c39bb79-2b19-401d-85e1-863e02115a07",
"MerchantId": "6aae5ef6-18f3-451b-ba55-375a44915555",
"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": "a80d8d0f-f99d-4637-9ce0-306568352dab",
"GrossWeight": 9.0,
"NetWeight": 10.0,
"Status": 11,
"SafetyStock": 12,
"InventoryQty": 13,
"CreateDate": "2025-10-28 19:11:17",
"UpdateDate": "2025-10-28 19:11:17",
"ActiveTimeFrom": "2025-10-28 19:11:17",
"ActiveTimeTo": "2025-10-28 19:11:17"
}
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": {}
}