GET api/Items/getGroup

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

GroupListResponse
NameDescriptionTypeAdditional information
response

defaultResponse

None.

content

Collection of GroupList

None.

Response Formats

application/json, text/json

Sample:
{
  "response": {
    "status": 1,
    "message": "sample string 2"
  },
  "content": [
    {
      "ID": 1,
      "Nombre": "sample string 2",
      "Color": "sample string 3",
      "Icono": "sample string 4",
      "FechaCreacion": "2024-11-28T07:23:39.5916425-05:00"
    },
    {
      "ID": 1,
      "Nombre": "sample string 2",
      "Color": "sample string 3",
      "Icono": "sample string 4",
      "FechaCreacion": "2024-11-28T07:23:39.5916425-05:00"
    }
  ]
}

application/xml, text/xml

Sample:
<GroupListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EXPU_Backend.Models">
  <content>
    <GroupList>
      <Color>sample string 3</Color>
      <FechaCreacion>2024-11-28T07:23:39.5916425-05:00</FechaCreacion>
      <ID>1</ID>
      <Icono>sample string 4</Icono>
      <Nombre>sample string 2</Nombre>
    </GroupList>
    <GroupList>
      <Color>sample string 3</Color>
      <FechaCreacion>2024-11-28T07:23:39.5916425-05:00</FechaCreacion>
      <ID>1</ID>
      <Icono>sample string 4</Icono>
      <Nombre>sample string 2</Nombre>
    </GroupList>
  </content>
  <response>
    <message>sample string 2</message>
    <status>1</status>
  </response>
</GroupListResponse>