GET api/ProductList?RFC={RFC}&Prod={Prod}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| RFC | string |
None. |
|
| Prod | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ListProdsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id_Producto | string |
None. |
|
| D_Producto | string |
None. |
|
| Link | string |
None. |
|
| Logo | string |
None. |
|
| Precio | decimal number |
None. |
|
| Vendedor | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id_Producto": "sample string 1",
"D_Producto": "sample string 2",
"Link": "sample string 3",
"Logo": "sample string 4",
"Precio": 5.1,
"Vendedor": "sample string 6"
},
{
"Id_Producto": "sample string 1",
"D_Producto": "sample string 2",
"Link": "sample string 3",
"Logo": "sample string 4",
"Precio": 5.1,
"Vendedor": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfListProdsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SikConnect.Models">
<ListProdsModel>
<D_Producto>sample string 2</D_Producto>
<Id_Producto>sample string 1</Id_Producto>
<Link>sample string 3</Link>
<Logo>sample string 4</Logo>
<Precio>5.1</Precio>
<Vendedor>sample string 6</Vendedor>
</ListProdsModel>
<ListProdsModel>
<D_Producto>sample string 2</D_Producto>
<Id_Producto>sample string 1</Id_Producto>
<Link>sample string 3</Link>
<Logo>sample string 4</Logo>
<Precio>5.1</Precio>
<Vendedor>sample string 6</Vendedor>
</ListProdsModel>
</ArrayOfListProdsModel>