POST api/clientes/recargaCliente
Request Information
URI Parameters
None.
Body Parameters
RecargaClienteDto| Name | Description | Type | Additional information |
|---|---|---|---|
| rncEmpresa | string |
Required String length: inclusive between 0 and 20 |
|
| tipoNcf | integer |
Required |
|
| rncCliente | string |
Required |
|
| nombreCliente | string |
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:
{
"rncEmpresa": "sample string 1",
"tipoNcf": 2,
"rncCliente": "sample string 3",
"nombreCliente": "sample string 4",
"empresaid": 1,
"clienteid": 1,
"monto": 1.0,
"tipo_cliente": "sample string 5",
"concepto": "sample string 6",
"formapago": "sample string 7",
"documento": "sample string 8",
"cxc": "sample string 9"
}
application/xml, text/xml
Sample:
<RecargaClienteDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MagyCorpServicesApi.Dto"> <clienteid>1</clienteid> <concepto>sample string 6</concepto> <cxc>sample string 9</cxc> <documento>sample string 8</documento> <empresaid>1</empresaid> <formapago>sample string 7</formapago> <monto>1</monto> <tipo_cliente>sample string 5</tipo_cliente> <nombreCliente>sample string 4</nombreCliente> <rncCliente>sample string 3</rncCliente> <rncEmpresa>sample string 1</rncEmpresa> <tipoNcf>2</tipoNcf> </RecargaClienteDto>
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.