POST api/Tarifa
Request Information
URI Parameters
None.
Body Parameters
Collection of Tarifa| Name | Description | Type | Additional information |
|---|---|---|---|
| CodCliente | string |
None. |
|
| CodProducto | string |
None. |
|
| FechaInicio | date |
None. |
|
| FechaFin | date |
None. |
|
| Precio | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"CodCliente": "sample string 1",
"CodProducto": "sample string 2",
"FechaInicio": "2026-04-16T13:26:21.2531672+02:00",
"FechaFin": "2026-04-16T13:26:21.2531672+02:00",
"Precio": 3.1
},
{
"CodCliente": "sample string 1",
"CodProducto": "sample string 2",
"FechaInicio": "2026-04-16T13:26:21.2531672+02:00",
"FechaFin": "2026-04-16T13:26:21.2531672+02:00",
"Precio": 3.1
}
]
application/xml, text/xml
Sample:
<ArrayOfTarifa xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fini.Comercial.Models">
<Tarifa>
<CodCliente>sample string 1</CodCliente>
<CodProducto>sample string 2</CodProducto>
<FechaFin>2026-04-16T13:26:21.2531672+02:00</FechaFin>
<FechaInicio>2026-04-16T13:26:21.2531672+02:00</FechaInicio>
<Precio>3.1</Precio>
</Tarifa>
<Tarifa>
<CodCliente>sample string 1</CodCliente>
<CodProducto>sample string 2</CodProducto>
<FechaFin>2026-04-16T13:26:21.2531672+02:00</FechaFin>
<FechaInicio>2026-04-16T13:26:21.2531672+02:00</FechaInicio>
<Precio>3.1</Precio>
</Tarifa>
</ArrayOfTarifa>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.