I want to start using ManyChat API. I see on their help page here https://api.manychat.com/swagger many functions to find users by name or id etc (getinfo, findbyname... ).
But I need a list of all subscribers (names and email addresses)
which function do I need?
Thanks!
Related
I'm currently organizing the Google groups that our account has and would like to see where each group received the email.
As far as I'm looking at the public API, it seems that there is no way to know when a group received an email or how many it already received.
For example, if a member has been a member of a group since the beginning, it would be possible to create a list from the member's email archive, but I don't want to do that for each group.
Does anyone have a better idea?
Maybe one of the solutions is here, and I'll check it.
Download all messages from a Google group
I have a newsletter I'd like to send every other week to the same list of users. I have a link for new users to sign up, and I'd like to let users unsubscribe at the bottom of the bi-weekly email.
Is there a way to send to a mailing list instead of just an array of users on Sendgrid?
The best I've seen is that you can make one API call to a mailing list to get the emails, but it caps you by returning a maximum of 50 users.
I've also seen that you can specify lists in marketing campaigns, but apparently you can't use dynamic templates in those campaigns? So I'd have to manually extract the HTML.
This leads me to believe I'll need to request the version of the template I want with test_data, grab the HTML content from that, and manually insert it into a new campaign with the mailing list ID I want?
Any ideas? Is there a better way?
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.
I understand that by using the code below i get all tracks by user XXXXX
http://api.soundcloud.com/users/XXXXX/tracks.json?client_id=MY ID
Now my question is how can i get all tracks by two or more different users in one go. For Example user YYYY and XXXX
The code below does not work
http://api.soundcloud.com/users/XXXXX/YYYYY/tracks.json?client_id=MY ID
There's no way to do it through the API. You have to make two or more requests to get each users tracks and then combine them into one collection. Let me know if you need any additional information.
Within a group (using the web/gui), you can see 'bouncing', 'non-verified' etc. etc. next to a user.
Is there a way to get this info via the API?
Using python, I can use RetrieveAllMembers to ... retrieve all members. The returned GroupMemberEntry objects don't have the 'status' (for lack of a better word) of the user.
My goal is:
1) Dump all groups in my domain
2) Check group for bouncing addresses
3) Email group owner about the bad addresses/users.
I can do #1 and #3. It's #2 that I need help with.
Sorry, neither the Google Apps Provisioning API nor the Google Groups Settings API support retrieving or setting a members delivery status.