...
DeliveryPath = api/v1.0/Core/VinX/Delivery/
Driver
GET on {DeliveryPath}/Driver
Global Filters
Filter | Query | Notes |
---|---|---|
Only drivers which were already assigned to a delivery |
...
Expand | |||||
---|---|---|---|---|---|
| |||||
|
Vehicle
GET on {DeliveryPath}/Vehicle
...
Expand | |||||
---|---|---|---|---|---|
| |||||
|
Tour
GET on {DeliveryPath}/Tour
Enum DeliveryDays
Name | Value |
---|---|
NoDelivery | 0 |
Morning | 10 |
Afternoon | 20 |
WholeDay | 30 |
...
Expand | |||||
---|---|---|---|---|---|
| |||||
|
Package
GET on {DeliveryPath}/Package
Global Filters
Filter | Query | Notes |
---|---|---|
ArticleType | Artikeltyp = 1 | |
Return | Retourenanzeige = true |
...
Expand | |||||
---|---|---|---|---|---|
| |||||
|
Deliveries Read
GET on {DeliveryPath}
Global Filters
Filter | Query | Notes |
---|---|---|
not closed | Status < ?? | |
in the future | StartZeit >= Today |
Enum State
Name | Value |
---|---|
Open | 10 |
Fixed | 20 |
Printed | 30 |
InDelivery | 50 |
Delivered | 60 |
Archived | 100 |
...
Expand | |||||
---|---|---|---|---|---|
| |||||
|
Deliveries Write
Post on {DeliveryPath}
Field name | Data type | Field VinX | Notes |
---|---|---|---|
Id | number | Auslieferung_ID | If Id is null a new delivery gets created. |
TourId | number | Auslieferung_TourID | |
VehicleId | number | Auslieferung_FahrzeugID | |
DriverId | number | Auslieferung_ChauffeurID | |
State | enum State | Auslieferung_Status | |
Date | Date | Auslieferung_Datum |
|
Timing | enum DeliveryDays | Auslieferung_Zeitpunkt | Morning, afternoon, whole day |
Stations | array | If stations array is empty the delivery gets deleted. | |
.. Position | number | Station_Position | delivery sequence |
.. Receipt | object | ||
../.. Id | number | Bel_ID | |
../.. Packages | array | incremental Is used for return of packages. | |
../../.. Id | number | GebPos_ArtikelID | |
../../.. QuantityReturned | number | GebPos_Retour | if already exists value gets replaced |
...
Expand | |||||
---|---|---|---|---|---|
| |||||
|
Media
Post on {DeliveryPath}/receipt/{id}/media
...