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": "ccf7a308-1a22-46ab-a598-b69d5e8df1ca", "IDCLIENTE": "94ce49ac-e3eb-411a-98c5-4c86d4bb78ef", "IDEMPRESA": "826dfccd-4336-4346-a28f-a2b8ab1ec21e", "IDITEM": "642e81d7-0b43-4c26-9ea5-44f0e0fe4b91", "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": {} }