GET cart/GetDeliveryType
Получение информации о типе доставки
Request Information
URI Parameters
None.Body Parameters
None.Response Information
Resource Description
DeliveryName | Description | Type | Additional information |
|---|---|---|---|
| OutPost | Адрес склада | string | None. |
| AddressReceipt | Адрес получателя груза, может быть пустым | string | None. |
| DeliveryType | Тип доставоки | DeliveryType | None. |
Response Formats
application/json, text/json
Sample:
{
"OutPost": "sample string 1",
"AddressReceipt": "sample string 2",
"DeliveryType": 1
}
application/xml, text/xml
Sample:
<Delivery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Wiki.PublicApi.Core.Cart"> <AddressReceipt>sample string 2</AddressReceipt> <DeliveryType>Self</DeliveryType> <OutPost>sample string 1</OutPost> </Delivery>