cancel
Showing results for 
Search instead for 
Did you mean: 

Outlook - Read meeting responses.

Hello all 🙂

Do any of you know a way to get Outlook meeting responses (Accepted, Rejected etc.) into BluePrism as a collection, like you would with recieved / sent mails.

At first glance, the Outlook VBA does not seem to support it, but I might be wrong?

Best regards, Mats

1 BEST ANSWER

Best Answers

John__Carter
Staff
Staff
Hi Mats - the Outlook VBO does not provide calendar functionality but I think a VBO could be created to do what you are looking for.

In VBA it looks like a Meeting object has a Recipients property:
https://docs.microsoft.com/en-gb/office/vba/api/outlook.meetingitem.recipients

A Recipient has a meeting response status
https://docs.microsoft.com/en-gb/office/vba/api/outlook.recipient.meetingresponsestatus

And the status value indicates Accepted/Declined etc
https://docs.microsoft.com/en-gb/office/vba/api/outlook.olresponsestatus

View answer in original post

1 REPLY 1

John__Carter
Staff
Staff
Hi Mats - the Outlook VBO does not provide calendar functionality but I think a VBO could be created to do what you are looking for.

In VBA it looks like a Meeting object has a Recipients property:
https://docs.microsoft.com/en-gb/office/vba/api/outlook.meetingitem.recipients

A Recipient has a meeting response status
https://docs.microsoft.com/en-gb/office/vba/api/outlook.recipient.meetingresponsestatus

And the status value indicates Accepted/Declined etc
https://docs.microsoft.com/en-gb/office/vba/api/outlook.olresponsestatus