/
Prereservation updates

Prereservation updates

Prereservations can be updated as any other reservations.

Additionally to all the classic reservation’s attributes you can update the two new attributes as well:

  • prereservationExpirationDate,

  • nextReservationTimes.

Please note, that you must always supply all the nextReservationTimes (that you supplied in POST request) for every single parcel’s update, otherwise you will loose your next reservation times!

Updating PrereservationExpirationDate

Please note that this parameter is accepted only for parcels created as prereservations (that is with the parameter supplied in the POST request).

In case you send a request with this parameter for a parcel that was not created as a prereservation, you will receive bad request response with an error message informing you about this case.

Update example:

{ "data": { "reservation": { "id": "id_prereservation_efae3b16-5d13-4978-bb2b-a790f9a541e1", "attributes":{ "prereservationExpirationDate":"2024-08-25T13:35:00.000Z" } } } }

Updating NextReservationTimes

You can update the nextReservationTimes now as well. It is not allowed to supply any new next reservation times to your exiting prereservation via the PATCH request. However you can update any active existing next reservation time by matching it via the StartReservationDate attribute. Both ExpirationDate and PrereservationExpirationDate are updateable.
Please note, that you must always supply all the nextReservationTimes (that you supplied in POST request)!

If you try to add new next reservation time (that is supply an element in the nextReservationTimesarray, which doesn’t match any element used in POST request for the reservation), you will receive bad reqest reposnse with an error message informing you about this case.

Update example:

{ "data": { "reservation": { "id": "id_prereservation_efae3b16-5d13-4978-bb2b-a790f9a541e1", "attributes": { "nextReservationTimes":[ { "expirationDate": "2024-08-25T16:00:00.000Z", "startReservationDate": "2024-08-25T14:00:00.000Z", "prereservationExpirationDate":"2024-08-25T13:35:00.000Z" } ] } } } }

 

 

Related content