GET api/tabelarankings

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of tabranking
NameDescriptionTypeAdditional information
id_ranking

integer

None.

numeroanuncio

string

None.

favorito

string

None.

bloqueado

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id_ranking": 1,
    "numeroanuncio": "sample string 2",
    "favorito": "sample string 3",
    "bloqueado": "sample string 4"
  },
  {
    "id_ranking": 1,
    "numeroanuncio": "sample string 2",
    "favorito": "sample string 3",
    "bloqueado": "sample string 4"
  }
]

text/xml

Sample:
<ArrayOftabranking xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/anunciosAPI.Models">
  <tabranking>
    <bloqueado>sample string 4</bloqueado>
    <favorito>sample string 3</favorito>
    <id_ranking>1</id_ranking>
    <numeroanuncio>sample string 2</numeroanuncio>
  </tabranking>
  <tabranking>
    <bloqueado>sample string 4</bloqueado>
    <favorito>sample string 3</favorito>
    <id_ranking>1</id_ranking>
    <numeroanuncio>sample string 2</numeroanuncio>
  </tabranking>
</ArrayOftabranking>