POST api/ClientesAdmin/Caja/Detalle/Agregar?ShippingDB={ShippingDB}&Token={Token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ShippingDB | string |
Required |
|
| Token | string |
Required |
Body Parameters
CajaDetalleAgregarRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CajaID | integer |
None. |
|
| IdentificadorEnvio | string |
None. |
|
| Importe | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"CajaID": 1,
"IdentificadorEnvio": "sample string 2",
"Importe": 3.0
}
application/xml, text/xml
Sample:
<CajaDetalleAgregarRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iShippingManagementAPIWeb.Controllers"> <CajaID>1</CajaID> <IdentificadorEnvio>sample string 2</IdentificadorEnvio> <Importe>3</Importe> </CajaDetalleAgregarRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |