GET PrestashopApi/ArticuloBaja?fechaModificacion={fechaModificacion}

Obtenemos una lista de todos los artículos de baja para Prestashop

Request Information

URI Parameters

NameDescriptionTypeAdditional information
fechaModificacion

Fecha a partir de la cual obtenemos los artículos de baja

string

Required

Body Parameters

None.

Response Information

Resource Description

Lista de Artículos

Collection of ArticuloBajaPrestashopDto
NameDescriptionTypeAdditional 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:46:55.1847118+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:46:55.1847118+01:00</FechaBaja>
    <IdArticuloPrestashop>2</IdArticuloPrestashop>
    <IdArticuloSofygest>1</IdArticuloSofygest>
    <Maestro>1</Maestro>
  </ArticuloBajaPrestashopDto>
  <ArticuloBajaPrestashopDto z:Ref="2" i:nil="true" />
</ArrayOfArticuloBajaPrestashopDto>