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": "bf0a4859-db3d-4000-95d3-54665ba21d7c", "IDCLIENTE": "63e418d7-83a8-4dd9-9345-35ccaab1e677", "IDEMPRESA": "1bf2acf3-6bf6-445e-979d-1dc5dc9cc113", "IDITEM": "47c20273-9fae-430a-973a-7dacb3265860", "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": {} }