POST api/clientes/pagoCliente
Request Information
URI Parameters
None.
Body Parameters
PagoClienteDto| Name | Description | Type | Additional information |
|---|---|---|---|
| fecha | date |
None. |
|
| terminoid | integer |
Required |
|
| empresaid | integer |
Required |
|
| clienteid | integer |
Required |
|
| monto | decimal number |
Required |
|
| tipo_cliente | string |
Required String length: inclusive between 0 and 1 |
|
| concepto | string |
Required String length: inclusive between 0 and 100 |
|
| formapago | string |
Required String length: inclusive between 0 and 3 |
|
| documento | string |
Required String length: inclusive between 0 and 20 |
|
| cxc | string |
String length: inclusive between 0 and 1 |
Request Formats
application/json, text/json
Sample:
{
"fecha": "2025-12-24T14:25:53.4465139-04:00",
"terminoid": 1,
"empresaid": 1,
"clienteid": 1,
"monto": 1.0,
"tipo_cliente": "sample string 1",
"concepto": "sample string 2",
"formapago": "sample string 3",
"documento": "sample string 4",
"cxc": "sample string 5"
}
application/xml, text/xml
Sample:
<PagoClienteDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MagyCorpServicesApi.Dto"> <clienteid>1</clienteid> <concepto>sample string 2</concepto> <cxc>sample string 5</cxc> <documento>sample string 4</documento> <empresaid>1</empresaid> <formapago>sample string 3</formapago> <monto>1</monto> <tipo_cliente>sample string 1</tipo_cliente> <fecha>2025-12-24T14:25:53.4465139-04:00</fecha> <terminoid>1</terminoid> </PagoClienteDto>
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.