Showing posts with label sharepoint. Show all posts
Showing posts with label sharepoint. Show all posts

12/5/20

Building App Chatbots Power Virtual Agents

Power Virtual Agents Chatbots Overview (6 of 6)In this video, we discuss the use cases to build chatbots. We show how to build topics, entities to build a chatbot flow that can enable users to search information from the SharePoint data list. We use Power Automate to integrate an OData API call from...

12/3/20

Building Apps Power Apps Overview

PowerApps on Microsoft 365 Overview (5 of 6)In this video, we build a mobile application with PowerApps. We integrate the app with a SharePoint data list and PowerBI online dashboard all in real-time. We start by creating an app from the SharePoint data list. After looking at the boiler-plate app...

11/15/20

Building Apps Power Platform Overview

Power Platform on Microsoft 365 Overview (3 of 6)In this video, we provide an overview of the Microsoft 365 Power Platform. We introduce the major services that are available, and we talk about how to leverage them when building an application.  As an example, we take a SharePoint Web form and...

11/12/20

Building Apps SharePoint Overview

SharePoint Microsoft 365 Overview (2 of 6)In this video, we provide an overview of SharePoint Web Portal features, content and document management systems. Since we are building an application, we focus on building a data list which functions as a database table to store our app data. We take a model-first...

11/11/20

Building Apps Microsoft 365 Overview

Microsoft 365 Overview (1 of 6)In this video, we provide an overview of the Microsoft 365 platform. We explain some platform services, so developers may find a use case applicable for their needs. In order to make this practical, we build an actual application in real-time. We do this to show the...

4/27/19

PowerShell SharePoint API with Invoke-RestMethod Return String

With PowerShell, we can use the invoke-RestMethod cmdlet to make Restful API calls to get JSON data. When using the SharePoint Restful APIs, the cmdlet returns the JSON data in string format which is not the intended result. To handle this problem, we can convert the string to a JSON object, so we...

9/29/18

Enable a SharePoint REST API Post with RequestDigest Token

 SharePoint provides a very detailed set of RESTful API which allows us to interact with SharePoint data lists. When sending GET API calls, there is no need for additional security validation. When sending a PATCH (update) or POST (create), SharePoint requires that the request headers have an additional header with an authorization token. In this article, we take a look at getting this authorization...

8/25/18

Upload a SharePoint Sandbox solution to Office 365

A Windows SharePoint (WSP) solution is a cab file that enables us to deploy data lists and web content like JavaScript, CSS, ASPX assets to a SharePoint site. It is a sandbox solution because it only enables us to deploy assets that can run on the browsers. When deploying to Office 365, we need to deploy...

10/14/17

SharePoint 2013 Move Documents to Another Library Using Content Organizer Web Service

A common task for document management system is to move a document from one library to another based on a particular condition or content type. To enable this feature, SharePoint provides some core actions that can let you copy the document to another site collection and then delete it from the source.  CodeProject In...

10/7/17

SharePoint 2013 Workflow Move Documents With Copy and Delete Actions

 A common task for document management system is to move a document from one library to another when the document approval status meets some condition.  Unfortunately, there is no Move core action provided from the out of box functionality.  There is however other core actions that we...