GET api/Order/GetDeliveryList
Данные доставки список
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of DeliveryListData| Name | Description | Type | Additional information |
|---|---|---|---|
| record_id |
Идентификатор |
integer |
None. |
| country |
Страна |
string |
None. |
| city |
Город |
string |
None. |
| address |
Адрес |
string |
Required String length: inclusive between 0 and 200 |
| country_rid |
Страна |
integer |
Required |
| city_rid |
Город |
integer |
Required |
| full_name |
ФИО |
string |
Required String length: inclusive between 0 and 200 |
| phone_number |
Номер телефона |
string |
Required String length: inclusive between 0 and 50 |
|
Почта |
string |
String length: inclusive between 0 and 200 |
Response Formats
application/json, text/json
Sample:
[
{
"record_id": 1,
"country": "sample string 2",
"city": "sample string 3",
"address": "sample string 4",
"country_rid": 1,
"city_rid": 1,
"full_name": "sample string 5",
"phone_number": "sample string 6",
"mail": "sample string 7"
},
{
"record_id": 1,
"country": "sample string 2",
"city": "sample string 3",
"address": "sample string 4",
"country_rid": 1,
"city_rid": 1,
"full_name": "sample string 5",
"phone_number": "sample string 6",
"mail": "sample string 7"
}
]
text/html
Sample:
[{"record_id":1,"country":"sample string 2","city":"sample string 3","address":"sample string 4","country_rid":1,"city_rid":1,"full_name":"sample string 5","phone_number":"sample string 6","mail":"sample string 7"},{"record_id":1,"country":"sample string 2","city":"sample string 3","address":"sample string 4","country_rid":1,"city_rid":1,"full_name":"sample string 5","phone_number":"sample string 6","mail":"sample string 7"}]