GET PrestashopApi/ArticuloWeb/Stock?idPaginaWeb={idPaginaWeb}
Obtenemos una lista de stock de los artículos para Prestashop
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idPaginaWeb |
Identificador de la página web |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Lista de Stock de Artículos
Collection of StockPrestashopDto| Name | Description | Type | Additional information |
|---|---|---|---|
| IdArticulo | integer |
None. |
|
| IdTalla | integer |
None. |
|
| IdColor | integer |
None. |
|
| Fecha | date |
None. |
|
| IdStockPrestashop | integer |
None. |
|
| IdArticuloPrestashop | integer |
None. |
|
| IdTallajePrestashop | integer |
None. |
|
| IdTallaPrestashop | integer |
None. |
|
| IdColorPrestashop | integer |
None. |
|
| Stock | decimal number |
None. |
|
| PvpWeb | decimal number |
None. |
|
| PvpWebSinIva | decimal number |
None. |
|
| Maestro | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "2",
"Maestro": 1,
"IdArticulo": 1,
"IdTalla": 2,
"IdColor": 3,
"Fecha": "2025-12-06T06:42:28.7527959+01:00",
"IdStockPrestashop": 4,
"IdArticuloPrestashop": 5,
"IdTallajePrestashop": 6,
"IdTallaPrestashop": 7,
"IdColorPrestashop": 8,
"Stock": 9.0,
"PvpWeb": 10.0,
"PvpWebSinIva": 11.0
},
{
"$ref": "2"
}
]
application/xml, text/xml
Sample:
<ArrayOfStockPrestashopDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" z:Id="1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" xmlns="http://schemas.datacontract.org/2004/07/Sofycom.Sofygest.Service.Application.Models.Dtos.Prestashop">
<StockPrestashopDto z:Id="2">
<Fecha>2025-12-06T06:42:28.7527959+01:00</Fecha>
<IdArticulo>1</IdArticulo>
<IdArticuloPrestashop>5</IdArticuloPrestashop>
<IdColor>3</IdColor>
<IdColorPrestashop>8</IdColorPrestashop>
<IdStockPrestashop>4</IdStockPrestashop>
<IdTalla>2</IdTalla>
<IdTallaPrestashop>7</IdTallaPrestashop>
<IdTallajePrestashop>6</IdTallajePrestashop>
<Maestro>1</Maestro>
<PvpWeb>10</PvpWeb>
<PvpWebSinIva>11</PvpWebSinIva>
<Stock>9</Stock>
</StockPrestashopDto>
<StockPrestashopDto z:Ref="2" i:nil="true" />
</ArrayOfStockPrestashopDto>