SlideShare a Scribd company logo
Get Some REST: SharePoint 2013 REST API's
Eric Shupps
SharePoint Server MVP
Sponsored by:

Real-time application monitoring, event
management, and operational health
metrics for Microsoft SharePoint
Reduce troubleshooting time by up to 30%
Increase efficiency and improve user satisfaction
Avoid downtime and costly outages
Meet or exceed service level agreements
Maximize investment in current infrastructure

Visit us on the web at www.binarywave.com
About Me

The
SharePoint
Cowboy

Eric Shupps

CKS:DEV

Patterns
&
Practices

www.sharepointcowboy.com

eshupps@binarywave.com

facebook.com/sharepointcowboy

@eshupps
Agenda
Introduction

Endpoints

Basic
Operations

Advanced
Methods

JavaScript

Windows 8
INTRODUCTION
Background
HTTP-based web service architecture that
uses nouns and verbs to define operations
Noun: “Items”
Verbs: GET, POST, PUT, DELETE
OData provides metadata, object typing
and query semantics for underlying data
structure (WCF data services)
/items(0)
Client Object Model service (client.svc)
processes queries, interacts with server OM,
returns formatted response (JSON, XML)
/items/GetByTitle(‘foo’)
Implementation

READ

UPDATE
DELETE

GET

PUT, MERGE, DELETE

Client.svc

CREATE

POST

Server
OM

Content
DB
Structure

http://contoso/_api/items/GetById(1)?$select=Title,ID

Location

Service

Resource Path

Query Options
Security
Local

Remote

Cross
Domain

Current
Context

OAuth

Request
Executor

Request
Digest

Access
Token

SP.WebProxy

Context
Info

Cross
Domain

HTTP
WebRequest
Gotchas
 OData

Spec != SharePoint REST
 No request batching
 Must specify “odata=verbose” in header
 Default response format is ATOM
 Use CSOM notation when accessing
static methods and properties
 Some requests may not return default
values due to processing overhead
ENDPOINTS
SharePoint 2013 REST Endpoints
Site

Web

Publishing

User
Profiles

Search

Taxonomy

Webs

Lists

Pages

Users

Query Results

Managed
Metadata

Features

Items

Variations

Profiles

Suggestions

Navigation

Activity

Event
Receivers
Metadata

You
Must
Be
Joking!
BASIC OPERATIONS
Sites
Get Feature
http://<site collection>/<site>/_api/sites/features/GetById(guid’<value>’)

View Event Receivers
http://<site collection>/<site>/_api/sites/eventreceivers

Create a Site
http://<site collection>/<site>/_api/web/webinfos/add
{ 'd' :{
'parameters': {
'__metadata': {'type': 'SP.WebInfoCreationInformation' },
'Url': 'RestSubWeb',
'Title': 'RestSubWeb',
'Description': 'rest created web',
'Language':1033,
'WebTemplate':'sts',
'UseUniquePermissions':false}
}}
Lists
Get All Lists
http://<site collection>/<site>/_api/lists

Get List
http://<site collection>/<site>/_api/lists/GetByTitle(‘Shared Documents’)

Get List Item
http://<site collection>/<site>/_api/lists/GetByTitle(‘Shared Documents’)/items/GetById(0)

Get List Item with Specific Properties
http://<site collection>/<site>/_api/lists/GetByTitle(‘Shared Documents’)/items/
GetById(1)?$select=Title,ID
Search
Simple Term
http://<site collection>/<site>/_api/search/query?queryText=‘Value’

Item Property
http://<site collection>/<site>/_api/search/query?queryText=‘PreferredName:Robert Smith’

Suggestions
http://<site collection>/<site>/_api/search/suggest?queryText=‘quarterly sales’
Social
Get Followed Users
http://<site collection>/<site>/_api/social.following/followed

Get Followed Documents
http://<siteCollection>/<site>/_api/social.following/my/followeddocumentsuri

Get Suggestions
http://<site collection>/<site>/_api/sp.userprofiles.peoplemanager/getmysuggestions

Get Followers
http://<siteCollection>/<site>/_api/sp.userprofiles.peoplemanager/
getpeoplefollowedby(accountName=@v)?@v='domainuser'
ADVANCED METHODS
Queries
HTML Values
http://<site>/_api/Web/Lists(guid’<value>′)/Items(1)/FieldValuesAsHtml

Get Permissions
http://<site>/_api/web/lists/getbytitle(‘Products’)/items()/?$select=Title,
Price,effectivebasepermissions

Join
http://<site>/_api/web/lists/getbytitle('Products')/items()?$select=Title,
Price,Supplier_/Title&$expand=Supplier_/Title
Sorting & Filtering
Filter with Comparison
http://<site>/_api/web/lists/getbytitle(‘Products’)/items/?$filter=Price gt 30000

Join with Filter
http://<site>/_api/web/lists/getbytitle(‘Products’)/items()?
$select=Title,Price,Supplier_/Title&$expand=Supplier_/Title&$filter=Supplier_/Title eq ‘Acme’

Top ‘N’ Results
http://<site collection>/<site>/_api/web/lists('<guid>')/items$top=10
CRUD Operations
Create a List Item
url: http://site url/_api/web/lists/GetByTitle(‘Test')/items
method: POST
body: { '__metadata': { 'type': 'SP.Data.TestListItem' }, 'Title': 'Test'}
headers:
Authorization = "Bearer " + accessToken
X-RequestDigest = form digest value
accept: "application/json;odata=verbose"
content-type: "application/json;odata=verbose"
content-length:1024

Edit a List Item
url: http://site url/_api/web/lists/GetByTitle(‘Test')/items(item id)
method: POST
body: { '__metadata': { 'type': 'SP.Data.TestListItem' }, 'Title': 'TestUpdated'}
headers:
Authorization = "Bearer " + accessToken
X-RequestDigest = form digest value
“IF-MATCH”: etag or “*”
“X-HTTP-Method”:”MERGE”,
accept: "application/json;odata=verbose"
content-type: "application/json;odata=verbose"
content-length:1024
Form Digest
 Used

to prevent replay attacks
 Updates will fail without digest value
 Local
 $("#__REQUESTDIGEST").val()
 Remote

 POST to /_api/contextinfo
JAVASCRIPT
Operations
 Async

GET/POST operations using AJAX

library
 Cross-Domain Library
 SP.RequestExecutor
 Remote

Apps: SP.AppContextSite with

@target
 JSON response
 accept: "application/json;odata=verbose"
Authorization
 Remote

 Use CSOM to set context
 Sites/Webs/Lists
– Handled by appweb not hostweb

 Pass token in request
– RequestExecutor

 Local

 Use current context
Retrieving SharePoint list data with jQuery, REST and AJAX

PROVIDER HOSTED APP
WINDOWS 8
Operations
 XAML

 List items with specific fields
 Async
– HTTPClient, HTTPClientHandler

 ATOM
 LINQ
Authorization
 Domain

Credentials
 Permissions
 Enterprise Authentication
 Private Networks
Uploading Documents to SharePoint using REST

WINDOWS 8 APP
Sponsored by:

Real-time application monitoring, event
management, and operational health
metrics for Microsoft SharePoint
Reduce troubleshooting time by up to 30%
Increase efficiency and improve user satisfaction
Avoid downtime and costly outages
Meet or exceed service level agreements
Maximize investment in current infrastructure

Visit us on the web at www.binarywave.com
Resources
Description

Link

Programming Using the SharePoint 2013 REST Service

http://bit.ly/TUwC9N

OData URI Conventions

http://bit.ly/Ytgdz4

Using the SharePoint 2013 REST Service

http://bit.ly/YPHif5

SharePoint 2013 Search REST API

http://bit.ly/ZqzOuM

Configuring SharePoint 2013 Search REST for Anonymous Users

http://bit.ly/152vFoy

SharePoint 2013 REST TypeScript Library

http://sprestts.codeplex.com

More Related Content

PPTX
클라우드 컴퓨팅 환경에서의 미터링 공개용
OnTheWheel
 
PDF
Velero search &amp; practice 20210609
KAI CHU CHUNG
 
PDF
Vdi how-it-works618
shiva2shetty
 
PPTX
F5 Networks BIG-IP LTM Virtual Edition
DSorensenCPR
 
PPTX
Server Virtualization
Siddharth Bhatt
 
PPTX
Wds
anilinvns
 
PPTX
Installing and Configuring NGINX Open Source
NGINX, Inc.
 
PPTX
VMware Overview
Madhu Bala
 
클라우드 컴퓨팅 환경에서의 미터링 공개용
OnTheWheel
 
Velero search &amp; practice 20210609
KAI CHU CHUNG
 
Vdi how-it-works618
shiva2shetty
 
F5 Networks BIG-IP LTM Virtual Edition
DSorensenCPR
 
Server Virtualization
Siddharth Bhatt
 
Installing and Configuring NGINX Open Source
NGINX, Inc.
 
VMware Overview
Madhu Bala
 

What's hot (20)

PPTX
Aviatrix_and_CheckPoint_Cloudmates_Apr_2021.pptx
jopivihine
 
PDF
Advanced performance troubleshooting using esxtop
Alan Renouf
 
PDF
Java 기반의 오픈 소스 GIS를 지원하는 국내 공간 DBMS 드라이버 개발
MinPa Lee
 
PDF
Containers: The What, Why, and How
Sneha Inguva
 
PDF
OpenShift Virtualization - VM and OS Image Lifecycle
Mihai Criveti
 
PPT
Cloud stack vs openstack vs eucalyptus
Ashok Kumar
 
PDF
FOSS4G Firenze 2022 참가기
SANGHEE SHIN
 
PDF
Hyper-V y Contenedores, una nueva forma de virtualización
Juan Ignacio Oller Aznar
 
PPTX
VMware vSphere technical presentation
aleyeldean
 
PDF
EKS Workshop
AWS Germany
 
PPTX
eBPF Basics
Michael Kehoe
 
PDF
디지털트윈 몇몇 기술 동향과 사례 - 대한공간정보학회 신년학술대회 발표 자료
SANGHEE SHIN
 
PDF
Virtualization presentation
Mangesh Gunjal
 
PDF
[오픈소스컨설팅]Zabbix Installation and Configuration Guide
Ji-Woong Choi
 
PPTX
Virtualization & cloud computing
Soumyajit Basu
 
PDF
Introduction into Ceph storage for OpenStack
OpenStack_Online
 
PDF
Workflow Engines & Event Streaming Brokers - Can they work together? [Current...
Natan Silnitsky
 
PPTX
MCSA 70-412 Chapter 05
Computer Networking
 
PDF
Distributed fun with etcd
Abdulaziz AlMalki
 
PDF
Kea DHCP – the new open source DHCP server from ISC
Men and Mice
 
Aviatrix_and_CheckPoint_Cloudmates_Apr_2021.pptx
jopivihine
 
Advanced performance troubleshooting using esxtop
Alan Renouf
 
Java 기반의 오픈 소스 GIS를 지원하는 국내 공간 DBMS 드라이버 개발
MinPa Lee
 
Containers: The What, Why, and How
Sneha Inguva
 
OpenShift Virtualization - VM and OS Image Lifecycle
Mihai Criveti
 
Cloud stack vs openstack vs eucalyptus
Ashok Kumar
 
FOSS4G Firenze 2022 참가기
SANGHEE SHIN
 
Hyper-V y Contenedores, una nueva forma de virtualización
Juan Ignacio Oller Aznar
 
VMware vSphere technical presentation
aleyeldean
 
EKS Workshop
AWS Germany
 
eBPF Basics
Michael Kehoe
 
디지털트윈 몇몇 기술 동향과 사례 - 대한공간정보학회 신년학술대회 발표 자료
SANGHEE SHIN
 
Virtualization presentation
Mangesh Gunjal
 
[오픈소스컨설팅]Zabbix Installation and Configuration Guide
Ji-Woong Choi
 
Virtualization & cloud computing
Soumyajit Basu
 
Introduction into Ceph storage for OpenStack
OpenStack_Online
 
Workflow Engines & Event Streaming Brokers - Can they work together? [Current...
Natan Silnitsky
 
MCSA 70-412 Chapter 05
Computer Networking
 
Distributed fun with etcd
Abdulaziz AlMalki
 
Kea DHCP – the new open source DHCP server from ISC
Men and Mice
 
Ad

Viewers also liked (20)

PPTX
Understanding the REST API of SharePoint 2013
SPSSTHLM
 
PPTX
SharePoint REST vs CSOM
Mark Rackley
 
PPTX
Curso SharePoint 2013 overview
Vladimir Medina
 
PPTX
Get Some Rest - Taking Advantage of the SharePoint 2013 REST API
Eric Shupps
 
PDF
Fy10 us budget_spending
Stephen Castellari
 
PDF
ITCamp 2013 - Peter Leeson - Intelligent Evolution
ITCamp
 
PPT
Tutorial Brainshark 4
Fernanda Gonzalez
 
PPTX
SharePoint Online Collaboration Options
Roman Nedzelsky
 
PDF
City square presentation
fishball5
 
PDF
Software Licensing for SaaS Applications
InishTech
 
PDF
Azure licensing (not) so easy - Laurynas Dovydaitis
ITCamp
 
PDF
Federal it transformation plans
Stephen Castellari
 
PDF
Certificate - Azure Fundamentals
Claude LACHAPELLE
 
PPTX
Pricing for profit
Azure Group
 
DOCX
Articulo
Karo Velasquez
 
PPTX
Automotive Industry Research: An Analysis of the Key Insights from the VFACTS...
James Organ
 
PPT
Advanced scientific visualization
Charles Flynt
 
PPTX
SharePoint Online v Onprem - presented by Concurrency, Inc
Concurrency, Inc.
 
PDF
Azure Cloud Dev Camp - Introduction
giventocode
 
Understanding the REST API of SharePoint 2013
SPSSTHLM
 
SharePoint REST vs CSOM
Mark Rackley
 
Curso SharePoint 2013 overview
Vladimir Medina
 
Get Some Rest - Taking Advantage of the SharePoint 2013 REST API
Eric Shupps
 
Fy10 us budget_spending
Stephen Castellari
 
ITCamp 2013 - Peter Leeson - Intelligent Evolution
ITCamp
 
Tutorial Brainshark 4
Fernanda Gonzalez
 
SharePoint Online Collaboration Options
Roman Nedzelsky
 
City square presentation
fishball5
 
Software Licensing for SaaS Applications
InishTech
 
Azure licensing (not) so easy - Laurynas Dovydaitis
ITCamp
 
Federal it transformation plans
Stephen Castellari
 
Certificate - Azure Fundamentals
Claude LACHAPELLE
 
Pricing for profit
Azure Group
 
Articulo
Karo Velasquez
 
Automotive Industry Research: An Analysis of the Key Insights from the VFACTS...
James Organ
 
Advanced scientific visualization
Charles Flynt
 
SharePoint Online v Onprem - presented by Concurrency, Inc
Concurrency, Inc.
 
Azure Cloud Dev Camp - Introduction
giventocode
 
Ad

Similar to Taking Advantage of the SharePoint 2013 REST API (20)

PPTX
Introduction to the SharePoint Client Object Model and REST API
Rob Windsor
 
PPTX
Share point hosted add ins munich
Sonja Madsen
 
PPTX
Are you getting Sleepy. REST in SharePoint Apps
Liam Cleary [MVP]
 
PPTX
Best Practices for Architecting a Pragmatic Web API.
Mario Cardinal
 
PDF
SPTECHCON - Get Some REST - Taking Advantage of the SharePoint 2013 REST API
Eric Shupps
 
PPT
jsSaturday - PhoneGap and jQuery Mobile for SharePoint 2013
Kiril Iliev
 
PPTX
[SharePoint Korea Conference 2013 / 강율구] Sharepoint 스마트하게 개발하기
lanslote
 
PPTX
Rest
Carol McDonald
 
PPTX
Rest with Java EE 6 , Security , Backbone.js
Carol McDonald
 
ODP
RESTful Web Services with JAX-RS
Carol McDonald
 
PDF
API Days Australia - Automatic Testing of (RESTful) API Documentation
Rouven Weßling
 
PPTX
SharePoint 2013 REST APIs
Giuseppe Marchi
 
PPTX
Web api
Sudhakar Sharma
 
PDF
Nordic APIs - Automatic Testing of (RESTful) API Documentation
Rouven Weßling
 
PDF
The Big Picture and How to Get Started
guest1af57e
 
PPTX
SPFx Webinar Loading SharePoint data in a SPFx Webpart
Jenkins NS
 
PDF
Security enforcement of Java Microservices with Apiman & Keycloak
Charles Moulliard
 
PDF
URLProtocol
Kosuke Matsuda
 
PDF
Developing an intranet on office 365
Eric Shupps
 
PPTX
The Full Power of ASP.NET Web API
Eyal Vardi
 
Introduction to the SharePoint Client Object Model and REST API
Rob Windsor
 
Share point hosted add ins munich
Sonja Madsen
 
Are you getting Sleepy. REST in SharePoint Apps
Liam Cleary [MVP]
 
Best Practices for Architecting a Pragmatic Web API.
Mario Cardinal
 
SPTECHCON - Get Some REST - Taking Advantage of the SharePoint 2013 REST API
Eric Shupps
 
jsSaturday - PhoneGap and jQuery Mobile for SharePoint 2013
Kiril Iliev
 
[SharePoint Korea Conference 2013 / 강율구] Sharepoint 스마트하게 개발하기
lanslote
 
Rest with Java EE 6 , Security , Backbone.js
Carol McDonald
 
RESTful Web Services with JAX-RS
Carol McDonald
 
API Days Australia - Automatic Testing of (RESTful) API Documentation
Rouven Weßling
 
SharePoint 2013 REST APIs
Giuseppe Marchi
 
Nordic APIs - Automatic Testing of (RESTful) API Documentation
Rouven Weßling
 
The Big Picture and How to Get Started
guest1af57e
 
SPFx Webinar Loading SharePoint data in a SPFx Webpart
Jenkins NS
 
Security enforcement of Java Microservices with Apiman & Keycloak
Charles Moulliard
 
URLProtocol
Kosuke Matsuda
 
Developing an intranet on office 365
Eric Shupps
 
The Full Power of ASP.NET Web API
Eyal Vardi
 

More from Eric Shupps (20)

PPTX
Microsoft Ignite 2022 - Scaling, Securing, Managing, and Publishing Power Pla...
Eric Shupps
 
PPTX
Scaling, Securing, Managing, and Publishing Power Platform Custom Connectors....
Eric Shupps
 
PDF
A Beginners Guide to Custom Connectors for Power Apps and Power Automate
Eric Shupps
 
PDF
App to AppExchange - A Journey from Idea to Market for Salesforce Developers
Eric Shupps
 
PPTX
Beginners Guide to Custom Connectors for Power Apps and Power Automate
Eric Shupps
 
PPTX
OSW06 - A Real World Guide to Building Highly Available Fault Tolerant ShareP...
Eric Shupps
 
PPTX
OSH01 - Developing SharePoint Framework Solutions for the Enterprise
Eric Shupps
 
PPTX
Mastering Modern Authentication and Authorization Techniques for SharePoint, ...
Eric Shupps
 
PPTX
Developing SharePoint Framework Solutions for the Enterprise (SPC 2019)
Eric Shupps
 
PPTX
Developing SharePoint Framework Solutions for the Enterprise - SEF 2019
Eric Shupps
 
PPTX
SharePoint and Office 365 Development Workshop
Eric Shupps
 
PPTX
ECS 2018: Introduction to Azure Web Applications
Eric Shupps
 
POTX
SharePoint 24x7x365 Architecting for High Availability, Fault Tolerance and D...
Eric Shupps
 
PPTX
Overcoming Gender Imbalance in the Technical Field
Eric Shupps
 
POTX
Mastering Modern Authentication and Authorization for SharePoint and Office A...
Eric Shupps
 
PPTX
Enterprise Content Management Solutions in SharePoint and Office 365
Eric Shupps
 
PPTX
Introduction to the Office Dev PnP Core Libraries
Eric Shupps
 
PPTX
SharePoint and Office Development Workshop
Eric Shupps
 
PPTX
From Zero to Hero: A Real World Guide to Building High Availability SharePoin...
Eric Shupps
 
PPTX
SharePoint and Office 365 Performance Best Practices
Eric Shupps
 
Microsoft Ignite 2022 - Scaling, Securing, Managing, and Publishing Power Pla...
Eric Shupps
 
Scaling, Securing, Managing, and Publishing Power Platform Custom Connectors....
Eric Shupps
 
A Beginners Guide to Custom Connectors for Power Apps and Power Automate
Eric Shupps
 
App to AppExchange - A Journey from Idea to Market for Salesforce Developers
Eric Shupps
 
Beginners Guide to Custom Connectors for Power Apps and Power Automate
Eric Shupps
 
OSW06 - A Real World Guide to Building Highly Available Fault Tolerant ShareP...
Eric Shupps
 
OSH01 - Developing SharePoint Framework Solutions for the Enterprise
Eric Shupps
 
Mastering Modern Authentication and Authorization Techniques for SharePoint, ...
Eric Shupps
 
Developing SharePoint Framework Solutions for the Enterprise (SPC 2019)
Eric Shupps
 
Developing SharePoint Framework Solutions for the Enterprise - SEF 2019
Eric Shupps
 
SharePoint and Office 365 Development Workshop
Eric Shupps
 
ECS 2018: Introduction to Azure Web Applications
Eric Shupps
 
SharePoint 24x7x365 Architecting for High Availability, Fault Tolerance and D...
Eric Shupps
 
Overcoming Gender Imbalance in the Technical Field
Eric Shupps
 
Mastering Modern Authentication and Authorization for SharePoint and Office A...
Eric Shupps
 
Enterprise Content Management Solutions in SharePoint and Office 365
Eric Shupps
 
Introduction to the Office Dev PnP Core Libraries
Eric Shupps
 
SharePoint and Office Development Workshop
Eric Shupps
 
From Zero to Hero: A Real World Guide to Building High Availability SharePoin...
Eric Shupps
 
SharePoint and Office 365 Performance Best Practices
Eric Shupps
 

Recently uploaded (20)

PDF
CIFDAQ's Market Wrap : Bears Back in Control?
CIFDAQ
 
PDF
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
PDF
How ETL Control Logic Keeps Your Pipelines Safe and Reliable.pdf
Stryv Solutions Pvt. Ltd.
 
PDF
Brief History of Internet - Early Days of Internet
sutharharshit158
 
PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PPTX
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
PPTX
The Future of AI & Machine Learning.pptx
pritsen4700
 
PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PPTX
IT Runs Better with ThousandEyes AI-driven Assurance
ThousandEyes
 
PDF
The Future of Artificial Intelligence (AI)
Mukul
 
PPTX
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
PPTX
Introduction to Flutter by Ayush Desai.pptx
ayushdesai204
 
PPTX
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
PDF
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
PDF
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
PPTX
Simple and concise overview about Quantum computing..pptx
mughal641
 
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
CIFDAQ's Market Wrap : Bears Back in Control?
CIFDAQ
 
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
How ETL Control Logic Keeps Your Pipelines Safe and Reliable.pdf
Stryv Solutions Pvt. Ltd.
 
Brief History of Internet - Early Days of Internet
sutharharshit158
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
The Future of AI & Machine Learning.pptx
pritsen4700
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
IT Runs Better with ThousandEyes AI-driven Assurance
ThousandEyes
 
The Future of Artificial Intelligence (AI)
Mukul
 
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
Introduction to Flutter by Ayush Desai.pptx
ayushdesai204
 
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
Simple and concise overview about Quantum computing..pptx
mughal641
 
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 

Taking Advantage of the SharePoint 2013 REST API