POST api/createCuotas
Request Information
URI Parameters
None.
Body Parameters
Cuotas| Name | Description | Type | Additional information |
|---|---|---|---|
| propiedad | integer |
None. |
|
| credito | integer |
None. |
|
| valor | decimal number |
None. |
|
| numero | integer |
None. |
|
| saldo | decimal number |
None. |
|
| frecuencia | integer |
None. |
|
| vence | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"propiedad": 1,
"credito": 2,
"valor": 3.0,
"numero": 4,
"saldo": 5.0,
"frecuencia": 6,
"vence": "2026-04-18T02:16:26.9379804-05:00"
}
application/xml, text/xml
Sample:
<Cuotas xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/mvfwebapi.Models"> <credito>2</credito> <frecuencia>6</frecuencia> <numero>4</numero> <propiedad>1</propiedad> <saldo>5</saldo> <valor>3</valor> <vence>2026-04-18T02:16:26.9379804-05:00</vence> </Cuotas>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |