I was trying to create a column with non editable. I didn't find any APIs in Microsoft graph.
Related
I am using SharePoint Online lists as a backend. I have requirements like when users add data to the SharePoint list, the same data needs to be added to the Active Campaign lists. There is no direct connector for Active Campaign under Power Automate. So, I have tried with HTTPClient with Angular but it does not allow GET/POST calls from the browser. It threw me a CORS error. Is there any alternative to making an Active Campaign API call from the client side using HTTPClient?
For a workaround, I have created a flow using Power Automate. There is a direct connector for Google Sheets under Power Automat. So, when the user adds new data to the SharePoint list, the same data will be added to the Google Sheets with Power Automate.
Now, I have imported that Google sheets data to Active Campaign lists. For that, I have used ActiveCampaign Google Sheets integration. But it is not working correctly. I am unable to import Google Sheets data to Active Campaign lists.
Below is the reference link for the same,
https://help.activecampaign.com/hc/en-us/articles/115001388224-how-to-send-contact-information-to-a-google-sheet#use-the-activecampaign-google-sheets-integration-0-0
Can anyone help me with the same?
Thanks
For Attachment Items in any list of SharePoint Online, graph explorer can get only Attachments property which contains value “true” or “false”.
Using Rest API we can easily expand and grab the attached links. However, Using Graph Explorer we can not expand the Attachments property.
The below query I have tried in Graph Explorer: https://graph.microsoft.com/v1.0/sites/{site-id}/lists/{list-id}/items/{item-id}
Attachments: true
How can we get the attachments.
Retrieving List Item attachment details is not supported.
So far, you can use only Sharepoint REST API
As #user2250152 said, currently this is not supported in Graph API. You could submit the feature request here: https://techcommunity.microsoft.com/t5/microsoft-365-developer-platform/idb-p/Microsoft365DeveloperPlatform
I have a SharePoint list and I'm using the Microsoft Graph API v1.0 (also tried beta) to get list items as per the documentation. As it suggests, I am using the expand=fields but my list has a person field (Engineer) which via OData I was able to expand and then use syntax like "Engineer/Title" and "Engineer/Email". This does not appear to work. How can I get this capability back using the Graph API? Thanks.
Is it possible using the Microsoft Graph to retrieve the list of applications assigned to me (basically the information displayed at myapps.microsoft.com)?
I want to do something like
https://graph.microsoft.com/v1.0/me/drive/items/workbook/add
or similar which will create a new workbook identical to what the New -> Workbook menu does in the OneDrive Web interface.
I can't create the file locally so upload is not an option.
The Microsoft Graph APIs only allow reading and modifying workbooks that already exist at this time.
I realize that your question stated you were not able to create the file locally. However, a library like js-xlsx has the ability to create workbooks in-memory that you could then push up into OneDrive using the Graph APIs. You could use a library like that to create a blank workbook, push it, then manipulate it using the Graph APIs.