POST Api/Pedido
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": "9584bac7-2b3c-4b7c-978a-f12b3424472c",
"IDCLIENTE": "f57d1eb9-5f14-4bb1-945a-5e73a1b1eab1",
"IDEMPRESA": "17d27576-1645-43e4-bd60-c10c4b18b0ec",
"IDITEM": "ea003fb4-c61c-4008-bd1c-874c33bc67ae",
"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": {}
}