Send an HTTP Request to SharePoint

Creating Multiple SharePoint List Items Using SharePoint REST API

When managing data in SharePoint lists, there are times when we need to create multiple list items in one go. Doing this efficiently can save time and improve performance, especially when working with large datasets. Here, we’ll explore how to use the SharePoint REST API to create multiple list items at once, leveraging the power […]

Creating Multiple SharePoint List Items Using SharePoint REST API Read More »

Exploring SharePoint REST API Endpoints

The SharePoint REST API is organized entirely around one root path — {site-url}/_api/ — with everything else (lists, files, users, search) hanging off web, site, or a dedicated service beneath it. Here’s a reference list of the endpoints you’ll actually reach for, plus a working example calling one from plain JavaScript. In this post: Site

Exploring SharePoint REST API Endpoints Read More »

How to Send an HTTP Request in SharePoint via JavaScript

Plain fetch() or XMLHttpRequest work fine for hitting SharePoint’s REST API — the part that’s actually SharePoint-specific isn’t the HTTP call itself, it’s the headers: an Accept header SharePoint’s OData implementation expects, and a request digest token required on anything that isn’t a GET. In this post: A GET request: fetching list items · A

How to Send an HTTP Request in SharePoint via JavaScript Read More »

Start your SharePoint with SPFX

Overview SharePoint Framework (SPFx) is a development framework provided by Microsoft for customizing and extending SharePoint Online and SharePoint on-premises. It allows developers to build client-side web parts, extensions, and other customizations using modern web technologies such as TypeScript, React, and more. Here are the key aspects of SharePoint development with SPFx: To start customizing

Start your SharePoint with SPFX Read More »