POST api/Carousel/InsertCatalogProducts
Request Information
URI Parameters
None.
Body Parameters
CatalogProductsItem| Name | Description | Type | Additional information |
|---|---|---|---|
| productsIds | string |
None. |
|
| catalogId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"productsIds": "sample string 1",
"catalogId": "sample string 2"
}
application/xml, text/xml
Sample:
<CatalogProductsItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <catalogId>sample string 2</catalogId> <productsIds>sample string 1</productsIds> </CatalogProductsItem>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| isError | boolean |
None. |
|
| message | string |
None. |
|
| extraValue | integer |
None. |
|
| resultCode | integer |
None. |
|
| result | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"isError": true,
"message": "sample string 2",
"extraValue": 3,
"resultCode": 4,
"result": {}
}
application/xml, text/xml
Sample:
<ResultEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JadoreApi.Models"> <extraValue>3</extraValue> <isError>true</isError> <message>sample string 2</message> <result /> <resultCode>4</resultCode> </ResultEntity>