POST api/ImportProducto
Request Information
URI Parameters
None.
Body Parameters
ImportProductoModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RFC | string |
None. |
|
| Id_Producto | string |
None. |
|
| EAN | string |
None. |
|
| SKU | string |
None. |
|
| D_Producto | string |
None. |
|
| Inventariable | boolean |
None. |
|
| Descripcion | string |
None. |
|
| CodSAT | string |
None. |
|
| Costo | decimal number |
None. |
|
| Precio | decimal number |
None. |
|
| IVA | decimal number |
None. |
|
| Ieps | decimal number |
None. |
|
| IepsC | decimal number |
None. |
|
| Tipo | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"RFC": "sample string 1",
"Id_Producto": "sample string 2",
"EAN": "sample string 3",
"SKU": "sample string 4",
"D_Producto": "sample string 5",
"Inventariable": true,
"Descripcion": "sample string 7",
"CodSAT": "sample string 8",
"Costo": 9.1,
"Precio": 10.1,
"IVA": 11.1,
"Ieps": 12.1,
"IepsC": 13.1,
"Tipo": "sample string 14"
}
application/xml, text/xml
Sample:
<ImportProductoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SikConnect.Models"> <CodSAT>sample string 8</CodSAT> <Costo>9.1</Costo> <D_Producto>sample string 5</D_Producto> <Descripcion>sample string 7</Descripcion> <EAN>sample string 3</EAN> <IVA>11.1</IVA> <Id_Producto>sample string 2</Id_Producto> <Ieps>12.1</Ieps> <IepsC>13.1</IepsC> <Inventariable>true</Inventariable> <Precio>10.1</Precio> <RFC>sample string 1</RFC> <SKU>sample string 4</SKU> <Tipo>sample string 14</Tipo> </ImportProductoModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>