| Category | v1 | v2 |
|---|---|---|
| Reservations | /v1/reservation | /v2/reservation /v2/reservation/{reservationId}/distribution |
Endpoint /v1/reservation is deprecated. It's highly recommended to use V2, because of better performance.
[
{
"reservation": {
"id": 1,
"···"
},
"placement": {
"id": 2,
"···"
},
"periods": [
{
"startDate": {
"date": "2050-01-02 00:00:00"
},
"quantity": 2,
"price": "10.0",
"discountedPrice": "10.0",
"totalPrice": "10.0",
"···"
}
]
},
{
"reservation": {
"id": 1,
"···"
},
"placement": {
"id": 2,
"···"
},
"periods": [
{
"startDate": {
"date": "2050-01-03 00:00:00"
},
"quantity": 2,
"price": "10.0",
"discountedPrice": "10.0",
"totalPrice": "10.0",
"···"
}
]
},
"···"
]
[
{
"id": 1,
"placement": {
"id": 2,
"···"
},
"···"
}
]
[
{
"startDate": {
"date": "2050-01-02 00:00:00"
},
"endDate": {
"date": "2050-01-03 00:00:00"
},
"goal": 4,
"discountedPrice": 20.0,
"totalPrice": 20.0
}
]