GET PrestashopApi/ArticuloWeb/Baja?idPaginaWeb={idPaginaWeb}
Obtenemos una lista de todos los artículos de baja 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 Artículos
Collection of ArticuloBajaPrestashopDto| Name | Description | Type | Additional information |
|---|---|---|---|
| IdArticuloSofygest | integer |
None. |
|
| IdArticuloPrestashop | integer |
None. |
|
| CodArticulo | string |
None. |
|
| FechaBaja | date |
None. |
|
| Maestro | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "2",
"Maestro": 1,
"IdArticuloSofygest": 1,
"IdArticuloPrestashop": 2,
"CodArticulo": "sample string 3",
"FechaBaja": "2025-12-06T06:49:44.743673+01:00"
},
{
"$ref": "2"
}
]
application/xml, text/xml
Sample:
<ArrayOfArticuloBajaPrestashopDto 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">
<ArticuloBajaPrestashopDto z:Id="2">
<CodArticulo z:Id="3">sample string 3</CodArticulo>
<FechaBaja>2025-12-06T06:49:44.743673+01:00</FechaBaja>
<IdArticuloPrestashop>2</IdArticuloPrestashop>
<IdArticuloSofygest>1</IdArticuloSofygest>
<Maestro>1</Maestro>
</ArticuloBajaPrestashopDto>
<ArticuloBajaPrestashopDto z:Ref="2" i:nil="true" />
</ArrayOfArticuloBajaPrestashopDto>