Questions tagged [sharepoint-online]

A cloud-based service, hosted by Microsoft, that provides SharePoint collaboration platform as an online service.

SharePoint Online is a collection of Web-based tools and technologies that help your organization store, share, and manage digital information. Built on Microsoft SharePoint Server 2013, this hosted service is ideal for working on projects, storing data and documents in a central location, and sharing information with others. The following Content features makes Enterprise Content Management (ECM) easy for everyone. It’s the combination of traditional content management, social capabilities, and powerful search.

3816 questions
3
votes
1 answer

Create JIRA issue from SharePoint using Logic apps

I want to create a JIRA issue using Logic Apps when a row is inserted into a SharePoint online list. I've authenticated myself, but am getting this error. The main part of the message reads as follows: Field ‘reporter’ of type ‘user’ is not…
AlHal
  • 361
  • 3
  • 21
3
votes
1 answer

Unable to subscribe web-hook for SharePoint online

We are unable to subscribe web-hook for SharePoint online from our Spring-Boot application. Providing valid notification URL(https enabled, publicly accessible, valid domain name, Post method) as parameter while consuming rest API in order to…
Vivek Jain
  • 317
  • 3
  • 12
3
votes
1 answer

How to use the PnP Framework in a c# application

We are planning to turn off legacy authentication on a tenant and this requires a change in an application made in C#. The app is currently using CSOM and connects to SharePoint using a username and password. This needs to be changed to PnP…
vilmarci
  • 451
  • 10
  • 31
3
votes
2 answers

Navigate to new url from SPFX in Sharepoint online

I have a dropdown in SPFX webpart in sharepoint online. In that dropdown, onchange, I am constructing a url with # tag. E.x. https://sharepointonine/default.aspx#2349-234234-23434 I need to navigate to this new url. I am not sure how to accomplish…
user24826
  • 455
  • 8
  • 15
3
votes
0 answers

How to discover all sites in Multi-Geo tenants using SharePoint REST API

We have a multi-geo tenant and we want to get all Site Collections across all locations. Currently, we try to use the next SharePoint REST API…
3
votes
1 answer

Azure Function Updating user profile using SharePoint Online and CSOM .NET Standard gives access denied

I have Azure Function v3 and I want to update Sharepoint user profile properties with CSOM and .NET standard 2.0 by using global admin account credentials. Reading is working. var site = new Uri("https://domain-admin.sharepoint.com"); …
3
votes
1 answer

Download File from SharePoint Online using WebClient

I am using .net 4.8 WebClient and the Microsoft.SharePointOnline.CSOM package, trying to download files from SharePoint online. const string username = "myusername@domain.com"; const string password = "mypassword"; const string url =…
jjanssen
  • 53
  • 2
  • 4
3
votes
0 answers

office365 sharepoint open binary gives missing schema error

I am trying to read a file from sharepoint using the office 365 package. My code looks like this: from office365.runtime.auth.authentication_context import AuthenticationContext from office365.sharepoint.client_context import ClientContext from…
mkh
  • 85
  • 3
3
votes
2 answers

Embedded SharePoint Online Excel file doesn't display horizontal scrollbar

Desired Behaviour Embed an Excel document that is hosted on SharePoint online into an HTML page. Actual Behaviour The embed loads, however there is no horizontal scrollbar. The only way to get to the data to the right of the view port is to click on…
user1063287
  • 10,265
  • 25
  • 122
  • 218
3
votes
0 answers

How can I remove Files Tab in Teams with Graph API?

I would like to remove or modify the Files tab in Teams via the Graph API: I could remove the Wiki tab, but it is not possible to modify or remove the Files tab. I think the reason is because I can not get it with this endpoint:…
3
votes
0 answers

403:Forbidden Error on sharepoint online rest api on reading /updating a sharepoint list

Im trying to connect my nodejs application to update/read list items from https://xyz.sharepoint.com/sites/dev/_api/web/lists/GetByTitle('listname'). Using sharepoint addin authentication where app was registered onto xyz.sharepoint.com registration…
3
votes
1 answer

Error when setting a value to Multivalue Managed metadata field type using SharePoint REST API

I have two managed metadata fields in my list, they both can have multiple values, the first one is 'mm' and the second one has a danish symbol Ø - 'mm_Ø'. I fetch the fields information using SharePoint REST API endpoint: GET…
3
votes
0 answers

Copying or moving files around in SharePoint Online

I see so many people struggling to copy or moving files around in SharePoint online, that I decided to write a small demo console app to show how to do it. We will be using the CreateCopyJobs method, available on CSOM to copy a folder from one site…
Pedro Soares
  • 1,117
  • 12
  • 14
3
votes
4 answers

Truncate "Multiple lines of text" column in Sharepoint Online list

I'm stuck on a particular scenario right now because of a recent change by Microsoft in Office 365 regarding the "Multiple lines of text" column in a Sharepoint list. My main goal is to truncate this column. If this column will have a lot of…
Richard Yu
  • 31
  • 1
  • 2
3
votes
2 answers

How to Access Sharepoint Online API with v1 Azure AD Application and Client Credentials

I am unable to make an API call to Sharepoint Online using Postman. I have successfully made API calls to the Graph API so I am familiar with how I think this should work. I have followed these instructions for setup: for creating a certificate and…