Incorrect appointment durations
Hello,
I have the following situation.
This is what I submit to the bookings api to create an appointment.
startDateTime: {
dateTime: ‘2024-10-02T09:15:00’,
timeZone: ‘W. Europe Standard Time’
},
endDateTime: {
dateTime: ‘2024-10-02T10:15:00.000Z’,
timeZone: ‘W. Europe Standard Time’
},
and here is the response from bookings api:
(The real created time is 14:20:45)
createdDateTime: ‘2024-09-26T12:20:45.1121478Z’,
lastUpdatedDateTime: ‘2024-09-26T12:20:46.1451305Z’,
isCustomerAllowedToManageBooking: false,
appointmentLabel: ”,
startDateTime: {
dateTime: ‘2024-10-02T09:15:00.0000000Z’,
timeZone: ‘W. Europe Standard Time’
},
endDateTime: {
dateTime: ‘2024-10-02T12:15:00.0000000Z’,
timeZone: ‘W. Europe Standard Time’
},
The appoint duration is 1 hour. I submit the correct time values with same time zones. The API is using incorrect times. It worked for 1 year and yesterday it just began to add 2 hours to each appointment.
How can I solve that? Is this my mistake or is there something microsoft can do?
Thank you!
Hello,I have the following situation.This is what I submit to the bookings api to create an appointment. startDateTime: {
dateTime: ‘2024-10-02T09:15:00’,
timeZone: ‘W. Europe Standard Time’
},
endDateTime: {
dateTime: ‘2024-10-02T10:15:00.000Z’,
timeZone: ‘W. Europe Standard Time’
}, and here is the response from bookings api:(The real created time is 14:20:45) createdDateTime: ‘2024-09-26T12:20:45.1121478Z’,
lastUpdatedDateTime: ‘2024-09-26T12:20:46.1451305Z’,
isCustomerAllowedToManageBooking: false,
appointmentLabel: ”,
startDateTime: {
dateTime: ‘2024-10-02T09:15:00.0000000Z’,
timeZone: ‘W. Europe Standard Time’
},
endDateTime: {
dateTime: ‘2024-10-02T12:15:00.0000000Z’,
timeZone: ‘W. Europe Standard Time’
}, The appoint duration is 1 hour. I submit the correct time values with same time zones. The API is using incorrect times. It worked for 1 year and yesterday it just began to add 2 hours to each appointment.How can I solve that? Is this my mistake or is there something microsoft can do?Thank you! Read More