GET api/CuentaContables/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CuentaContable| Name | Description | Type | Additional information |
|---|---|---|---|
| IdPadre | integer |
None. |
|
| Cuenta | string |
None. |
|
| Nombre | string |
None. |
|
| Id | integer |
None. |
|
| FechaCreacion | date |
None. |
|
| UsuarioCreador | integer |
None. |
|
| FechaModificacion | date |
None. |
|
| UsuarioModificador | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"idPadre": 1,
"cuenta": "sample string 2",
"nombre": "sample string 3",
"id": 4,
"fechaCreacion": "2026-01-02T06:09:28.379665-06:00",
"usuarioCreador": 7,
"fechaModificacion": "2026-01-02T06:09:28.379665-06:00",
"usuarioModificador": 1
}
application/xml, text/xml
Sample:
<CuentaContable xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Admin.Shared.Entities.Catalogos"> <Eliminado xmlns="http://schemas.datacontract.org/2004/07/Admin.Shared.Entities.Common">true</Eliminado> <FechaCreacion xmlns="http://schemas.datacontract.org/2004/07/Admin.Shared.Entities.Common">2026-01-02T06:09:28.379665-06:00</FechaCreacion> <FechaModificacion xmlns="http://schemas.datacontract.org/2004/07/Admin.Shared.Entities.Common">2026-01-02T06:09:28.379665-06:00</FechaModificacion> <Id xmlns="http://schemas.datacontract.org/2004/07/Admin.Shared.Entities.Common">4</Id> <UsuarioCreador xmlns="http://schemas.datacontract.org/2004/07/Admin.Shared.Entities.Common">7</UsuarioCreador> <UsuarioModificador xmlns="http://schemas.datacontract.org/2004/07/Admin.Shared.Entities.Common">1</UsuarioModificador> <Nombre xmlns="http://schemas.datacontract.org/2004/07/Admin.Shared.Entities.Common">sample string 3</Nombre> <Cuenta>sample string 2</Cuenta> <IdPadre>1</IdPadre> </CuentaContable>