POST api/v2/pedido/repetirpedido
Request Information
URI Parameters
None.
Body Parameters
RepetirPedidoBidingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PedidoId | integer |
None. |
|
| CanalId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PedidoId": 1,
"CanalId": 2
}
application/xml, text/xml
Sample:
<RepetirPedidoBidingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models.v2.BindingModels"> <CanalId>2</CanalId> <PedidoId>1</PedidoId> </RepetirPedidoBidingModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RepetirPedidoResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Succeeded | boolean |
None. |
|
| Errors | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Succeeded": true,
"Errors": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<RepetirPedidoResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models.v2.Result">
<Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Errors>
<Succeeded xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models">true</Succeeded>
</RepetirPedidoResult>