Share via

changing the start and end times of an appointment

Sanker, Steve 20 Reputation points
2026-02-20T16:15:56.2566667+00:00

I want to amend the start and end times of an appointment but Outlook isn't allowing to change the times. How do I do it?

Outlook | Windows | Classic Outlook for Windows | For business
0 comments No comments

Answer accepted by question author

  1. Q&A Assist
    2026-02-20T16:16:03.2033333+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    To change the start and end times of an appointment in Outlook, you can use the setAsync method provided by the Office JavaScript API if you are working with an Outlook add-in. Here’s how it works:

    1. Setting Start Time: You can set the start time of an appointment using item.start.setAsync(dateTime, options, callback), where dateTime is a UTC-formatted Date object. If the appointment already has a start time, changing it will automatically adjust the end time to maintain the same duration.
    2. Setting End Time: Similarly, you can set the end time using item.end.setAsync(dateTime, options, callback). If the appointment has an existing end time, changing it will adjust the duration accordingly.

    However, if you are using the classic Outlook on Windows, note that the setAsync method cannot be used to change the start or end time of a recurring appointment. If your appointment is recurring, you will need to modify the series or individual occurrences through the appropriate methods.

    Make sure you are using the correct permissions and that your add-in is set up properly to access these methods.

    Was this answer helpful?

1 additional answer

Sort by: Most helpful
  1. Sanker, Steve 20 Reputation points
    2026-02-20T16:17:53.44+00:00

    I found the answer, I had it on all day appointment

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.