PUT api/Movimiento/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
M_Movimiento| Name | Description | Type | Additional information |
|---|---|---|---|
| IdMov | integer |
None. |
|
| IdTipo | integer |
None. |
|
| IdCategoria | integer |
None. |
|
| IdSubCategoria | integer |
None. |
|
| IdReferencia | integer |
None. |
|
| Tipo | string |
None. |
|
| IdCtaOrigen | integer |
None. |
|
| IdCtaDestino | integer |
None. |
|
| Fecha | date |
None. |
|
| Importe | decimal number |
None. |
|
| Comprobante | string |
None. |
|
| Descripcion | string |
None. |
|
| Activo | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"IdMov": 1,
"IdTipo": 2,
"IdCategoria": 3,
"IdSubCategoria": 4,
"IdReferencia": 5,
"Tipo": "sample string 6",
"IdCtaOrigen": 7,
"IdCtaDestino": 8,
"Fecha": "2026-07-31T20:00:59.979839-06:00",
"Importe": 10.0,
"Comprobante": "sample string 11",
"Descripcion": "sample string 12",
"Activo": true
}
application/xml, text/xml
Sample:
<M_Movimiento xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Perfin.Models"> <Activo>true</Activo> <Comprobante>sample string 11</Comprobante> <Descripcion>sample string 12</Descripcion> <Fecha>2026-07-31T20:00:59.979839-06:00</Fecha> <IdCategoria>3</IdCategoria> <IdCtaDestino>8</IdCtaDestino> <IdCtaOrigen>7</IdCtaOrigen> <IdMov>1</IdMov> <IdReferencia>5</IdReferencia> <IdSubCategoria>4</IdSubCategoria> <IdTipo>2</IdTipo> <Importe>10</Importe> <Tipo>sample string 6</Tipo> </M_Movimiento>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.