GET api/Grupos

Obtiene todos los grupos.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of GruposModels
NameDescriptionTypeAdditional information
Id

El Id del grupo.

string

None.

Nombre

El nombre del grupo.

string

None.

Nombre2

El nombre con el id del grupo.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "sample string 1",
    "Nombre": "sample string 2",
    "Nombre2": "sample string 3"
  },
  {
    "Id": "sample string 1",
    "Nombre": "sample string 2",
    "Nombre2": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGruposModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Biolabs.Models">
  <GruposModels>
    <Id>sample string 1</Id>
    <Nombre>sample string 2</Nombre>
    <Nombre2>sample string 3</Nombre2>
  </GruposModels>
  <GruposModels>
    <Id>sample string 1</Id>
    <Nombre>sample string 2</Nombre>
    <Nombre2>sample string 3</Nombre2>
  </GruposModels>
</ArrayOfGruposModels>