POST api/UberArrendo/contratos/{aIdFolioRent}/notas/factura_v2
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| aIdFolioRent | integer |
Required |
Body Parameters
FacturaNotaRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Notas | Collection of NotaFacturaRequestDTO |
None. |
|
| UUIDs | Collection of NotaFacturaUUIDRequestDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"Notas": [
{
"IdNota": 1
},
{
"IdNota": 1
}
],
"UUIDs": [
{
"UUID": "sample string 1"
},
{
"UUID": "sample string 1"
}
]
}
application/xml, text/xml
Sample:
<FacturaNotaRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DVA_ArrendoUber.DTO.Request">
<Notas>
<NotaFacturaRequestDTO>
<IdNota>1</IdNota>
</NotaFacturaRequestDTO>
<NotaFacturaRequestDTO>
<IdNota>1</IdNota>
</NotaFacturaRequestDTO>
</Notas>
<UUIDs>
<NotaFacturaUUIDRequestDTO>
<UUID>sample string 1</UUID>
</NotaFacturaUUIDRequestDTO>
<NotaFacturaUUIDRequestDTO>
<UUID>sample string 1</UUID>
</NotaFacturaUUIDRequestDTO>
</UUIDs>
</FacturaNotaRequest>
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.