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": "4b93d58d-0934-4e0b-af16-bb15490e04b4",
"IDCLIENTE": "e4c0536a-4352-4269-a5d6-a6afa6a34281",
"IDEMPRESA": "b7dd313b-5393-433e-9e1c-1f980bc7b264",
"IDITEM": "dc560d70-5155-4e8d-95ee-2a2e165518cb",
"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": {}
}