GET PrestashopApi/Familia

Obtenemos una lista de familias

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Lista Familias

Collection of FamiliaPrestashopDto
NameDescriptionTypeAdditional information
Id

integer

None.

IdSeccion

integer

None.

Nombre

string

Required

DescripcionWeb

string

None.

Imagen

string

None.

TieneArticulosWeb

boolean

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

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