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": "c9c3938a-2214-4131-a80d-13c8b2d3c386", "IDCLIENTE": "ded906d7-0f25-4647-9f70-6479a5da851d", "IDEMPRESA": "8c9b64d0-1f8c-470b-8e16-c7f92a42ebaa", "IDITEM": "48954228-2959-4901-8c93-dbe4431ce6c6", "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": {} }