DELETE api/TransaccionesCF/Eliminar?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TransaccionesCF| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| idCliente | integer |
None. |
|
| CodRest | string |
Required String length: inclusive between 0 and 4 |
|
| CodSucursal | string |
Required String length: inclusive between 0 and 3 |
|
| NumFactura | integer |
None. |
|
| TipoTransaccion | integer |
None. |
|
| Fecha | date |
None. |
|
| Monto | decimal number |
None. |
|
| Observaciones | string |
String length: inclusive between 0 and 500 |
|
| Supervisor | string |
String length: inclusive between 0 and 50 |
|
| Cajero | string |
String length: inclusive between 0 and 50 |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"idCliente": 2,
"CodRest": "sample string 3",
"CodSucursal": "sample string 4",
"NumFactura": 5,
"TipoTransaccion": 6,
"Fecha": "2025-10-29T09:34:45.7625736-06:00",
"Monto": 8.0,
"Observaciones": "sample string 9",
"Supervisor": "sample string 10",
"Cajero": "sample string 11"
}
application/xml, text/xml
Sample:
<TransaccionesCF xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PosSicEWalletWA.Models"> <Cajero>sample string 11</Cajero> <CodRest>sample string 3</CodRest> <CodSucursal>sample string 4</CodSucursal> <Fecha>2025-10-29T09:34:45.7625736-06:00</Fecha> <Monto>8</Monto> <NumFactura>5</NumFactura> <Observaciones>sample string 9</Observaciones> <Supervisor>sample string 10</Supervisor> <TipoTransaccion>6</TipoTransaccion> <id>1</id> <idCliente>2</idCliente> </TransaccionesCF>