POST api/InsertPedido
Request Information
URI Parameters
None.
Body Parameters
InsertPedido| Name | Description | Type | Additional information |
|---|---|---|---|
| IDPEDIDO | globally unique identifier |
None. |
|
| IDCLIENTE | globally unique identifier |
None. |
|
| IDEMPRESA | globally unique identifier |
None. |
|
| IDITEM | globally unique identifier |
None. |
|
| CANTIDAD | decimal number |
None. |
|
| SUMARCANTIDAD | integer |
None. |
|
| TIENECREDITO | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"IDPEDIDO": "bf36c417-7d99-41d5-8774-d3d554af6ccc",
"IDCLIENTE": "3f117868-de27-4337-aa4f-6a4604e0c07a",
"IDEMPRESA": "5e291661-ab35-4813-8d65-af3f21699895",
"IDITEM": "22050a7c-3e90-4e11-872e-9e7c360a3c45",
"CANTIDAD": 5.0,
"SUMARCANTIDAD": 6,
"TIENECREDITO": 7
}
Response Information
Resource Description
ApiResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| CodResult | integer |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
|
| DataExtra | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"CodResult": 1,
"Message": "sample string 2",
"Data": {},
"DataExtra": {}
}