GET PrestashopApi/Color

Obtenemos una lista de todos los colores

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Lista de Colores

Collection of ColorPrestashopDto
NameDescriptionTypeAdditional information
Id

integer

None.

IdLocal

integer

None.

Nombre

string

Required

Orden

integer

None.

Color

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "2",
    "Id": 1,
    "IdLocal": 2,
    "Nombre": "sample string 3",
    "Orden": 4,
    "Color": "sample string 5"
  },
  {
    "$ref": "2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfColorPrestashopDto 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">
  <ColorPrestashopDto z:Id="2">
    <Color z:Id="3">sample string 5</Color>
    <Id>1</Id>
    <IdLocal>2</IdLocal>
    <Nombre z:Id="4">sample string 3</Nombre>
    <Orden>4</Orden>
  </ColorPrestashopDto>
  <ColorPrestashopDto z:Ref="2" i:nil="true" />
</ArrayOfColorPrestashopDto>