GET api/GetIndiceCatalogsSupplier/{Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ContenidoCatalog
NameDescriptionTypeAdditional information
Catalogos

Collection of filaCatalog

None.

LinksInformacion

Collection of filaInfo

None.

Titulo

string

None.

ImagenHeader

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Catalogos": [
    {
      "Nombre": "sample string 1",
      "Image": "sample string 2",
      "LinkIndice": "sample string 3"
    },
    {
      "Nombre": "sample string 1",
      "Image": "sample string 2",
      "LinkIndice": "sample string 3"
    }
  ],
  "LinksInformacion": [
    {
      "Nombre": "sample string 1",
      "LinkIndice": "sample string 2"
    },
    {
      "Nombre": "sample string 1",
      "LinkIndice": "sample string 2"
    }
  ],
  "Titulo": "sample string 1",
  "ImagenHeader": "sample string 2"
}

application/xml, text/xml

Sample:
<ContenidoCatalog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Europamundo.Models.Class">
  <Catalogos>
    <filaCatalog>
      <Image>sample string 2</Image>
      <LinkIndice>sample string 3</LinkIndice>
      <Nombre>sample string 1</Nombre>
    </filaCatalog>
    <filaCatalog>
      <Image>sample string 2</Image>
      <LinkIndice>sample string 3</LinkIndice>
      <Nombre>sample string 1</Nombre>
    </filaCatalog>
  </Catalogos>
  <ImagenHeader>sample string 2</ImagenHeader>
  <LinksInformacion>
    <filaInfo>
      <LinkIndice>sample string 2</LinkIndice>
      <Nombre>sample string 1</Nombre>
    </filaInfo>
    <filaInfo>
      <LinkIndice>sample string 2</LinkIndice>
      <Nombre>sample string 1</Nombre>
    </filaInfo>
  </LinksInformacion>
  <Titulo>sample string 1</Titulo>
</ContenidoCatalog>