GET api/Usuarios/getCatalog?idCatalog={idCatalog}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idCatalog | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
areaListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| response | defaultResponse |
None. |
|
| content | Collection of defaultList |
None. |
Response Formats
application/json, text/json
Sample:
{
"response": {
"status": 1,
"message": "sample string 2"
},
"content": [
{
"ID": 1,
"Nombre": "sample string 2",
"TipoCatalogoID": 3,
"NombreTipoCatalogo": "sample string 4",
"FechaCreacion": "2025-10-29T15:27:35.9079907-04:00"
},
{
"ID": 1,
"Nombre": "sample string 2",
"TipoCatalogoID": 3,
"NombreTipoCatalogo": "sample string 4",
"FechaCreacion": "2025-10-29T15:27:35.9079907-04:00"
}
]
}
application/xml, text/xml
Sample:
<areaListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EXPU_Backend.Models">
<content>
<defaultList>
<FechaCreacion>2025-10-29T15:27:35.9079907-04:00</FechaCreacion>
<ID>1</ID>
<Nombre>sample string 2</Nombre>
<NombreTipoCatalogo>sample string 4</NombreTipoCatalogo>
<TipoCatalogoID>3</TipoCatalogoID>
</defaultList>
<defaultList>
<FechaCreacion>2025-10-29T15:27:35.9079907-04:00</FechaCreacion>
<ID>1</ID>
<Nombre>sample string 2</Nombre>
<NombreTipoCatalogo>sample string 4</NombreTipoCatalogo>
<TipoCatalogoID>3</TipoCatalogoID>
</defaultList>
</content>
<response>
<message>sample string 2</message>
<status>1</status>
</response>
</areaListResponse>