Office JS Add-in API Compose appointment get contact - outlook-addin

I'm searching in documentation how to get the list of contact of the Office account in the way to display it and let the user pick all phone numbers he need.
I assume is not possible during outlook appointment compose. But i would to be sure (Maybe i miss an important point in doc)
Thanks !

Currently the feature to get all contacts, you requested, is not a part of the product. We track Outlook add-in feature requests on our user-voice page. Please add your request there. Feature requests on user-voice are considered when we go through our planning process.
Meanwhile, you can achieve this by using REST API's.

Related

When creating custom collections via rest API ,it says collection unavailable on google ? Does anyone know how to fix this?

When creating custom collections using rest API ,The collection appears to show unavailable on google ,How to fix this ? so that it appears on Google.
Google is a Sales Channel in your store? Therefore it is up to you to tick off the box to make that collection available to Google the Sales Channel. That is the first thing you should do anyway. Go to your Admin and turn your collection on to that Sales Channel.
If you do not have access to the Admin, you will have to ask the merchant to do that for you as there are no API calls that allow you to do this, as far as I know, it may remain the domain of Plus stores only. You can check that further.

API for sending closed captions to a Microsoft Teams meeting

Since August 25, 2021, Microsoft Teams has support for CART captioners to send text (captions) to the meeting. This is great!
See https://learn.microsoft.com/en-us/officeupdates/teams-admin
On this page
https://support.microsoft.com/en-us/office/use-live-captions-in-a-teams-meeting-4be2d304-f675-4b57-8347-cbd000a21260 is described how to obtain the CART caption link, to which my software need to connect.
But this is where the information ends. I cannot find the (Graph?) (REST?) API how to make this work.
I have searched the API reference https://learn.microsoft.com/en-us/javascript/api/overview/msteams-client?view=msteams-client-js-latest as well as SDK sources on GitHub. Nothing about CART or captions!
I hope someone can point to me to the documentation on how to feed Closed Captions to a MS Teams meeting... some Sample code is even better ;-)
Thanks
We have discussed with engineering team and get to know that GET API development is in-progress. There will never be a POST API for it.
We do not have exact ETA to share for now.
There is a CART API endpoint that you can use to push captions to Teams. This is the same URL that you get when you enable CART in the meeting options for your meeting . The details are available on the Teams Meeting Apps API reference page.

Howto read list of selected mails with the Office.js API

The user can select emails in Outlook online by placing checkmarks in front of them. Is there a way to get the list of selected emails by means of the Office.js API?
Alternatively: is it possible to extend the [move to] button with custom options?
Currently these 2 features you mentioned are not part of the Office JS API. We track Outlook add-in feature requests on our user-voice page. Please add your requests there. Feature requests on user-voice are considered when we go through our planning process

Bigcommerce PHP API, get the email addresses of all newsletter subscriber, not using control panel

As state in the title, I want to get the email addresses from all my newsletter subscriber. Since this is just part of what I need to code up, dumping out the info into a csv file using Bigcommerce control panel is not an option.
So far, what I had figured out is getting the addresses from ALL the customers. Is there a filter I can apply so to filter the non-subscriber out of this list? Or there are other ways to approach this problem?
Thank you in advance for any helps.
At this time, it is not possible thru the Bigcommerce API. There are no fields for the customers resource to indicate if they signed up for the newsletter or not.
Furthermore, there is no API access to any of the newsletter content at all.
Please reference https://developer.bigcommerce.com/api/stores/v2/customers
If you were not aware, Bigcommerce already integrates directly (and nicely) with MailChimp. If you are set on using your own email marketing programs, simply have Bigcommerce integrate with MailChimp to port the newsletter subscribers over, and then you can look into connecting to the MailChimp API to grab the necessary data: http://apidocs.mailchimp.com

Automatic notification without an API

My school is using a website to manage grades, homework and communication with teachers. Because there is no way to get automatic notification, most students have to use it daily to check manually if there's an update (new message, new grade, etc). Since their service has no API, what should I do to get automatic notifications.
Is there any tools available that automatically notify you (by email or rss feed) of any change in a page by authentifying and checking if the value of a specific field changed?
Should I code my own script?
Is there any tool or library out there that could make this task easier?
Thanks in advance for your answers.
https://www.changedetection.com/
Not sure if it works for secure websites, though.
I just found something interesting. It's called Scrapy. It's an application framework that makes data-mining and structured data extraction easier.
Has anyone experience with Scrapy? Could it solve my problem?