GET api/Items/getGroup
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
GroupListResponse| Name | Description | Type | Additional 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": "2025-10-29T15:15:57.5379991-04:00"
},
{
"ID": 1,
"Nombre": "sample string 2",
"Color": "sample string 3",
"Icono": "sample string 4",
"FechaCreacion": "2025-10-29T15:15:57.5379991-04: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>2025-10-29T15:15:57.5379991-04:00</FechaCreacion>
<ID>1</ID>
<Icono>sample string 4</Icono>
<Nombre>sample string 2</Nombre>
</GroupList>
<GroupList>
<Color>sample string 3</Color>
<FechaCreacion>2025-10-29T15:15:57.5379991-04: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>