Delivery price
| Property | Type | Description | Information |
|---|---|---|---|
id | int | Identifier | Unique for single delivery price. |
price | Monetary | Price for 1 km | Price for 1 km |
valid_from | date | Date from delivery price is valid | -- |
valid_to | date | Date to delivery price is valid | null for currently valid delivery price |
created_at | date | Delvery price creation date | Date of delivery price creation. |
updated_at | date | Delivery price latest update date | Date of delivery price latest update. |
Example:
{
"id": 1,
"price": {
"CZK": {
"value": 200,
"formatted": "200,00 Kč"
}
},
"valid_from": "2020-12-31T23:00:00.000000Z",
"valid_to": null,
"created_at": "2022-12-05T13:34:10+0100",
"updated_at": "2022-12-05T13:34:10+0100",
"_links": [
{
"href": "/api/v0/delivery-prices/1",
"rel": "self",
"type": "GET"
}
]
}