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": "b6186091-ef9f-42ac-a457-e03e4357780b",
"IDCLIENTE": "db830eb5-0b3e-4686-8544-4f7e07c0f416",
"IDEMPRESA": "d48ffbd8-448f-4825-b6b8-acfe609ac044",
"IDITEM": "cafaee63-1f51-48a3-ada8-dfdb837c4b41",
"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. |
|
| DataExtra | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"CodResult": 1,
"Message": "sample string 2",
"Data": {},
"DataExtra": {}
}