POST externo/api/load-catalogos/Obtener-CatalogoConcepto
Request Information
URI Parameters
None.
Body Parameters
CatalogoConcepto| Name | Description | Type | Additional information |
|---|---|---|---|
| idConcepto | integer |
None. |
|
| idConceptoPadre | integer |
None. |
|
| descripcion | string |
None. |
|
| unidad | string |
None. |
|
| activo | integer |
None. |
|
| fechaRegistro | date |
None. |
|
| fechaActualizacion | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"idConcepto": 1,
"idConceptoPadre": 1,
"descripcion": "sample string 1",
"unidad": "sample string 2",
"activo": 1,
"fechaRegistro": "2026-02-24T15:20:27.4069563+00:00",
"fechaActualizacion": "2026-02-24T15:20:27.4069563+00:00"
}
application/xml, text/xml
Sample:
<CatalogoConcepto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RUV.CORE.MODELO.AutoProduccion.Api"> <activo>1</activo> <descripcion>sample string 1</descripcion> <fechaActualizacion>2026-02-24T15:20:27.4069563+00:00</fechaActualizacion> <fechaRegistro>2026-02-24T15:20:27.4069563+00:00</fechaRegistro> <idConcepto>1</idConcepto> <idConceptoPadre>1</idConceptoPadre> <unidad>sample string 2</unidad> </CatalogoConcepto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
JsonResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| message | string |
None. |
|
| model | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"message": "sample string 2",
"model": {}
}
application/xml, text/xml
Sample:
<JsonResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RUV.CORE.MODELO.Util.Data"> <code>1</code> <message>sample string 2</message> <model /> </JsonResponse>