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": "64829298-69d0-4394-b7a1-8f8f9a15a82d",
"IDCLIENTE": "c8dd4570-a1b0-44b6-8276-8edf3590ee38",
"IDEMPRESA": "376e515d-0bab-4833-a775-46913fe69b31",
"IDITEM": "c397d21d-3dff-4891-bd36-16cce976db1b",
"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. |
Response Formats
application/json, text/json
Sample:
{
"CodResult": 1,
"Message": "sample string 2",
"Data": {}
}