POST api/InsertPedido
Request Information
URI Parameters
None.
Body Parameters
InsertPedidoName | 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": "43fe3c6a-6bc1-4dcd-a23b-725927b102a8", "IDCLIENTE": "fd711ff5-3dc7-497b-8687-20dfc9afc733", "IDEMPRESA": "309bf230-a6b1-4e38-8fe6-2fcca5ff66d7", "IDITEM": "6dadb204-579a-4242-80a6-b950bf1235a6", "CANTIDAD": 5.0, "SUMARCANTIDAD": 6, "TIENECREDITO": 7 }
Response Information
Resource Description
ApiResponseName | Description | Type | Additional information |
---|---|---|---|
CodResult | integer |
None. |
|
Message | string |
None. |
|
Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "CodResult": 1, "Message": "sample string 2", "Data": {} }