POST api/productos/GetProductCatalog
Request Information
URI Parameters
None.
Body Parameters
ProductCatalogRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Campaign | string |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Campaign": "sample string 1",
"PageNumber": 2,
"PageSize": 3
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ProductCatalogResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Products | Collection of ProductDto |
None. |
|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| CodeError | string |
None. |
|
| Exception | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Products": [
{
"Sku": "sample string 1",
"Name": "sample string 2",
"Description": "sample string 3",
"PriceBefore": 4.0,
"Price": 5.0,
"Available": true,
"Quantity": 7,
"Pictures": [
{
"Position": 1,
"Url": "sample string 2"
},
{
"Position": 1,
"Url": "sample string 2"
}
],
"Categories": [
"sample string 1",
"sample string 2"
]
},
{
"Sku": "sample string 1",
"Name": "sample string 2",
"Description": "sample string 3",
"PriceBefore": 4.0,
"Price": 5.0,
"Available": true,
"Quantity": 7,
"Pictures": [
{
"Position": 1,
"Url": "sample string 2"
},
{
"Position": 1,
"Url": "sample string 2"
}
],
"Categories": [
"sample string 1",
"sample string 2"
]
}
],
"Status": 1,
"Message": "sample string 2",
"CodeError": "sample string 3",
"Exception": "sample string 4"
}