GET PrestashopApi/Marca

Obtenemos una lista de todas las marcas

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Lista de Marcas

Collection of MarcaPrestashopDto
NameDescriptionTypeAdditional information
Id

integer

None.

Nombre

string

Required

DescripcionWeb

string

None.

Imagen

string

None.

TieneArticulos

boolean

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

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