GET delivery/getprice?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PriceRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| VATpercent | decimal number |
None. |
|
| Cost | decimal number |
None. |
|
| CostWithTaxes | decimal number |
None. |
|
| Urgency | dlvUrgency |
None. |
|
| Envelope | dlvEnvelope |
None. |
|
| NoCalculate | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"vaTpercent": 2.0,
"cost": 1.0,
"costWithTaxes": 1.0,
"urgency": 1,
"envelope": 1,
"noCalculate": true
}
application/xml, text/xml
Sample:
<PriceRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Clickoapp2.Domain.Models"> <Cost>1</Cost> <CostWithTaxes>1</CostWithTaxes> <Envelope>Envl0</Envelope> <Id>1</Id> <NoCalculate>true</NoCalculate> <Urgency>Hour0</Urgency> <VATpercent>2</VATpercent> </PriceRequest>