Outlook oAuth - retrieve contact lists - rest

I'm using the Outlook REST API 2.0. The API works good and I can retrieve the contact data.
But you also have an option within outlook to make "contact lists". Now I would like to retrieve these lists, but cannot find it in the API. Is it just not possible or am I seeing it wrong? Weird to not include this data in the API calls.
Thanks in advance,
DrunkenMoose

I think you are referring to "distribution lists". The question has been possibly answered here...
Create a mailing distribution group by outlook office365 API REST

Related

Is there a way to get the Suggested Contacts through Outlook API?

I'm currently developing an app that fetches my contacts in my Microsoft account.
The problem is, unlike Google, when I send or receive an email to/from a new contact, it isn't copied into My Contacts, so I can't get it through https://outlook.office.com/api/v2.0/me/contacts.
However, when I wrote a new email, it appears as a suggestion, so I guess it is stored somewhere else.
The question is: is there a way to access to my suggested contacts through the API to get their emails? And how?
Thank you 😊
This feature is only available in beta version for now, please see the following api:
https://outlook.office.com/api/beta/me/contacts?$select=EmailAddresses,GivenName,Surname,DisplayName
This api will return all the contacts that you have received an email from or sent an email to :)
The closest thing to what you're looking for is the People API. As that page says:
The People API returns relevent person entities with each request. A person aggregates information from across mail, contacts and social networks. The results are ordered by their relevance, which is determined by the criteria specified in the request and ranked based on multiple communication, collaboration and business relationships.

How to integrate MailChimp in PowerShell

Using powershell, I want to create a mail list and add subscribed users to that list through MailChimp API v 3. I think I would read an SQL database of users then do a HTTP Post call to the mailchimp API for creating a list and batch posting the subscribed users.
Does any one have sample code or a simple tutorial?
I was only able to find old versions mailchimp v2/1 code samples:
http://poshcode.org/3479
http://poshcode.org/3351
Thanks.

AD Azure Graph API does not return directorylinkchanges

I am using differential query feature provided by AD Azure graph apis as described here
Things are working fine except for one issue. The sample responses in the link show that membership changes are sent across as directorylinkchange objects but I do not receive any such objects with similar queries on making membership changes from the portal.
I am doing a GET to
https://graph.windows.net/<domain-name>/directoryObjects?api-version=2013-04-05&$filter=isof('Microsoft.WindowsAzure.ActiveDirectory.Group')%20or%20isof('Microsoft.WindowsAzure.ActiveDirectory.User')&deltaLink=cLbsN4TzLm92uH26XEe7Ph6HfE10VkRsxjmz8 ..[truncated]
I am not sure if I am missing something here as I am able to fetch other User and Group changes. So could anyone working on azure be able help me out on this one. Thanks !!
Ok. answer to my own question is , that the URL filter must contain all three object classes User, Group and Contact just like it is in the microsoft sample.
https://graph.windows.net/contoso.com/directoryObjects?api-version=2013-04-05&$filter=isof('Microsoft.WindowsAzure.ActiveDirectory.User')%20or%20isof('Microsoft.WindowsAzure.ActiveDirectory.Group')%20or%20isof('Microsoft.WindowsAzure.ActiveDirectory.Contact')

How can I see the list of customers I created in Intuit AggCat API?

discoverAndAddAccounts will create customers and deleteCustomer will remove them. As I was testing I created customers and now I don't have their IDs so I can't delete them.
I don't see a method for that on https://ipp.developer.intuit.com/index.php?title=0010_Intuit_Partner_Platform/0020_Aggregation_%26_Categorization_Apps/AggCat_API/0020_API_Documentation
No, there is not an API to get this information. You will need to keep track of them.
Please submit a support ticket and we will have to get the information for you.
William
Have you tried using getCustomerAccounts.
getCustomerAccounts

How to figure out if an email is answered using Exchange EWS API?

I am trying to figure out if there is an "ANSWERED" flag which could be used to determine if the Email has been answered using EWS API. Does anyone know a way to get that information?
Thanks
Naresh
If you are talking about the notification which Outlook displays on a mail ("You replied to this message on xx.xx.xxxx"), you can retrieve this info by reading the PidTagLastVerbExecuted PidTagLastVerbExecutionTime properties from an item. See http://msdn.microsoft.com/en-us/library/cc433482(v=EXCHG.80).aspx, section 2.2.1.14 and .15. The property definitions can be found in the master property list: http://msdn.microsoft.com/en-us/library/cc433490(v=exchg.80).aspx