I have to create a group in yammer using JavaScript or using any other services so we can call that service from AJAX. For that group i can give my own name,number of users and mainly i can get that group ID.
Please Help Me.
Like atmd said there doesn't seem to be any API for creation of Yammer-groups.
There are, however, endpoints for joining/leaving groups;
POST https://www.yammer.com/api/v1/group_memberships.json?group_id=:group_id
DELETE https://www.yammer.com/api/v1/group_memberships.json?group_id=:group_id
wich in turn are joining and leaving.
Source
Related
An Okta Admin is able to convert individual assignments to group assignments as stated in the help documentation. Is it possible to do this in a programmatic way through the Okta API? I'm not able to find any reference in the docs.
No, unfortunately there is no way to do that through API, as far as I know
I utilize Okta workflows to programmatically convert individual assignments to group assignments. You can send a POST (I use the custom API action card in Okta Workflows, but I'm sure you could post directly to the API) to /api/v1/apps/<okta app ID>/users/<okta userID> with the following body: {"scope":"GROUP"}. Hope that helps, I know I struggled to find a solution until I discovered this method.
I need to post multiple groups to service now and get all the tickets corresponding to all those groups.
Is there any Service Noe API or Web Service available to do this.
Please help me to do so.
Yes, there is a REST API which you could've found by spending literally three seconds on Google.
https://developer.servicenow.com/app.do#!/rest_api_doc?v=jakarta&id=c_TableAPI
https://docs.servicenow.com/bundle/geneva-servicenow-platform/page/integrate/inbound_rest/concept/c_RESTAPI.html
As those articles state, you can literally get the exact code you need to perform these requests by opening the Rest API Explorer module in your instance.
I just started doing some yammer-to-website integration using their API's to get the feed of a particular group.
I recently added 6 new groups and trying to get these through the Javascript API (requirement i know i can hardcode them as i have their Id's) but one thing I've noticed is that its been a day already and the following rest endpoint is still not returning me those new groups I created.
Endpoint is
https://www.yammer.com/api/v1/groups.json
The group was set as public (by default) is there anything else i would have to do in order to get these new groups as part of my response?
the funny thing is when i do the following call for the groups i currently belong to
Endpoint:
https://www.yammer.com/api/v1/groups.json?mine=1
they show up here?
Any insights on this would be greatly appreciated
Cheers
Is it possible to get a view of a user's activity (opens, clicks etc) via the Mailchimp API?
Looking through the docs, it seems possible at the campaign level, but I would like to see this information across all campaigns for a given user.
I think that Member-activity could be closed to what you want, I am not aware of any other direct method how to get this.
check API MailChimp API - Lists section
As the topic says, is there any way to programmatically change Google's group member settings. Say for example the setting as to have emails sent to a group distributed to a particular member (one can be in a group without receiving mails sent to the group). There is a multitude of group member settings like this, but I haven't found a way to do it by API.
The first ideas would be the Admin Directory API or Groups Settings API, but neither supports any operations like these (the latter only has operations that affect the group as a whole).
Within the Admin SDK, there's the Groups Settings API as you mentioned. Everything this API can do from an admin level is found here.
As far as I know, if it's not a setting available in this API, it won't be possible via API.