GET PrestashopApi/Seccion

Obtenemos una lista de secciones

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Lista Secciones

Collection of SeccionPrestashopDto
NameDescriptionTypeAdditional information
Id

integer

None.

Nombre

string

Required

DescripcionWeb

string

None.

EsDeStock

boolean

None.

Imagen

string

None.

TieneArticulosWeb

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "2",
    "Id": 1,
    "Nombre": "sample string 2",
    "DescripcionWeb": "sample string 3",
    "EsDeStock": true,
    "Imagen": "sample string 5",
    "TieneArticulosWeb": true
  },
  {
    "$ref": "2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSeccionPrestashopDto 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">
  <SeccionPrestashopDto z:Id="2">
    <DescripcionWeb z:Id="3">sample string 3</DescripcionWeb>
    <EsDeStock>true</EsDeStock>
    <Id>1</Id>
    <Imagen z:Id="4">sample string 5</Imagen>
    <Nombre z:Id="5">sample string 2</Nombre>
    <TieneArticulosWeb>true</TieneArticulosWeb>
  </SeccionPrestashopDto>
  <SeccionPrestashopDto z:Ref="2" i:nil="true" />
</ArrayOfSeccionPrestashopDto>