GET api/MovInvTotal?RFC={RFC}&Id_MovInventario={Id_MovInventario}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| RFC | string |
None. |
|
| Id_MovInventario | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of MovInventarioTotalModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Partidas | integer |
None. |
|
| Cantidad | decimal number |
None. |
|
| Total | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Partidas": 1,
"Cantidad": 2.1,
"Total": 3.1
},
{
"Partidas": 1,
"Cantidad": 2.1,
"Total": 3.1
}
]
application/xml, text/xml
Sample:
<ArrayOfMovInventarioTotalModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SikConnect.Models">
<MovInventarioTotalModel>
<Cantidad>2.1</Cantidad>
<Partidas>1</Partidas>
<Total>3.1</Total>
</MovInventarioTotalModel>
<MovInventarioTotalModel>
<Cantidad>2.1</Cantidad>
<Partidas>1</Partidas>
<Total>3.1</Total>
</MovInventarioTotalModel>
</ArrayOfMovInventarioTotalModel>