GET api/TopVenta?RFC={RFC}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| RFC | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of TopCteModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RFC | string |
None. |
|
| ImporteCte | decimal number |
None. |
|
| Id_Producto | string |
None. |
|
| ImporteProd | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"RFC": "sample string 1",
"ImporteCte": 2.1,
"Id_Producto": "sample string 3",
"ImporteProd": 4.1
},
{
"RFC": "sample string 1",
"ImporteCte": 2.1,
"Id_Producto": "sample string 3",
"ImporteProd": 4.1
}
]
application/xml, text/xml
Sample:
<ArrayOfTopCteModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SikConnect.Models">
<TopCteModel>
<Id_Producto>sample string 3</Id_Producto>
<ImporteCte>2.1</ImporteCte>
<ImporteProd>4.1</ImporteProd>
<RFC>sample string 1</RFC>
</TopCteModel>
<TopCteModel>
<Id_Producto>sample string 3</Id_Producto>
<ImporteCte>2.1</ImporteCte>
<ImporteProd>4.1</ImporteProd>
<RFC>sample string 1</RFC>
</TopCteModel>
</ArrayOfTopCteModel>