Microsoft Graph API - Share Sharepoint site only - sharepoint

You can share a Sharepoint site without adding them to the member groups via the front-end (screenshot included). However I was wondering if there was a way to do this via the Microsoft Graph API?
I have scoured the docs, both v1 and beta and haven't found anything - so any help would be greatly welcomed.
Graph API Docs

According to the Microsoft Graph user voice, this feature is currently unavailable in the Graph API and is currently a suggested feature - will update this answer if/when it is implemented
Uservoice Sharepoint permission suggestion

Related

How to get SharePoint modern page content using Graph API?

I can get SharePoint modern Page content through SharePoint REST API using below endpoint but I'm looking for GRAPH API endpoint to achieve the same result.
/_api/web/lists/getbytitle('Site%20Pages')/items?$select=CanvasContent1
Can someone assist on this ?
Found the solution through Microsoft docs Q&A
page content can be found via
https://graph.microsoft.com/beta/sites/{site-id}/pages/{page-id}/webparts
Note: It's available only in /beta version

Fetch all sites from SharePoint by Microsoft Graph API

Does anyone know how I can fetch all sites from my SharePoint by using Microsoft Graph API?
I saw this documents but it seemed that there are no API to list sites.
And I saw this questions but answer was there were no ways.
List Microsoft Sharepoint Sites with Microsoft Graph
Could you help me?
Currently Graph API supported to get all SharePoint sites:
https://graph.microsoft.com/v1.0/sites?search=*
You can test in Graph Explorer firstly:
Reference:
Retrieve Site Collections And SubSites Using Microsoft Graph API

How to get SharePoint online Groups using Microsoft Graph API

I want to get sharepoint groups using graph api instead of REST API Call
As far as I know Microsoft Graph doesn't expose an endpoint that allows you to get the information of SharePoint Group.
If you has this requirement, you could vote this idea on Microsoft Graph UserVoice.

Microsoft Graph get sharepoint sites analytics not working

I tried to query the analytics of a SharePoint site using Microsoft Graph from Microsoft Flow. Before I do this, I tried this in Graph Explorer.
The following url is used.
https://graph.microsoft.com/v1.0/sites/xxxx.sharepoint.com,xxxx,xxxx/analytics
This error message is displayed.
We had an issue sending this request to the Graph API. For assistance, connect with us on StackOverflow with the tag [microsoftgraph].
I have no problem with these two queries:
https://graph.microsoft.com/v1.0/sites/xxxx.sharepoint.com,xxxx,xxxx
https://graph.microsoft.com/v1.0/sites/xxxx.sharepoint.com,xxxx,xxxx/lists
It just doesn't work with analytics.
Based on the documentation, Analytics is not available in all national deployments but I'm in global tenant so I assume it is supported.
Adding a "lastSevenDays" or "allTime" specifier at the end of the url may help you out
https://graph.microsoft.com/v1.0/sites/xxxx.sharepoint.com,xxxx,xxxx/analytics/lastSevenDays
https://graph.microsoft.com/v1.0/sites/xxxx.sharepoint.com,xxxx,xxxx/analytics/allTime

I would like to integrate docusign with my application

I am using a sharepoint environment for maintaining documents. I would like to integrate docusign with my sharepoint environment as some document needs to be signed. Is there any possibilities for integrating these two ?. Any specific guidelines for API integration with sharepoint environment?. Thanks in advance.
Thanks,
Prasath.S
There's a free Connector that you can use to easily integrate SharePoint 2010 with DocuSign (http://www.docusign.com/partner/docusign-sharepoint-2010). If you're using another version of SharePoint, integration is still possible, but you'll likely have to build it yourself using the DocuSign API (and SharePoint API) to integrate the two systems. The DocuSign Developer Center (http://www.docusign.com/developer-center) contains a wealth of information about using the DocuSign APIs.

Resources