GET api/Usuarios/getTypeCatalog?idCatalog={idCatalog}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
idCatalog | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
areaListResponseName | 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": "2024-11-28T07:23:39.6712117-05:00" }, { "ID": 1, "Nombre": "sample string 2", "TipoCatalogoID": 3, "NombreTipoCatalogo": "sample string 4", "FechaCreacion": "2024-11-28T07:23:39.6712117-05: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>2024-11-28T07:23:39.6712117-05:00</FechaCreacion> <ID>1</ID> <Nombre>sample string 2</Nombre> <NombreTipoCatalogo>sample string 4</NombreTipoCatalogo> <TipoCatalogoID>3</TipoCatalogoID> </defaultList> <defaultList> <FechaCreacion>2024-11-28T07:23:39.6712117-05: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>