SlideShare a Scribd company logo
OneNote API @ Silicon Valley Code Camp
 
 
• 
• 
• 
 
 
• 
• 
•
 Free on all platforms 
• Windows 
• Windows Phone 
• Mac OS X 
• iOS 
• Android and Android Wear 
• And on the web with OneNote Online 
 Pre-installed with every new Windows device 
 New 1st party experiences 
• Office Lens for WP: Your pocket scanner. Fixes, enhances, and makes pictures readable 
• OneNote Clipper: Clip the web using your favorite browser 
• me@onenote.com: Emails saved to OneNote 
 10’s of millions of users 
 15 GB of free storage with OneDrive 
 No upload quota
Lightweight, simple, and available anywhere 
RESTful CRUD API for Notes 
Built on JSON, HTML, and OData 
Find anything quickly 
Entity recognition, image/audio/video processing, schematized content and metadata 
Full text search and structured queries 
Natural language search 
Your memory store in the cloud 
One place for all your memories. Never forget anything again. 
Effortlessly evoke your memories whenever you need them 
Enable more personalized devices, apps, and smarter digital assistants 
Enable next gen apps to start bridging personal data silos
Our Partners
Make your existing apps more personal 
Tap into users notes and memories and improve your app experience using the power of full text search 
Leverage data saved by other apps and devices 
E.g. A restaurant app can make better suggestions based on previously visited restaurants or recipes saved to OneNote. 
A retail app can notify users when items they saved to OneNote go on sale. 
Use OneNote to increase your app usage 
Enable users to save content for later to OneNote from within your app. 
Use OneNote’s powerful canvas to create captivating layouts that link users back to your app when they search their 
memories in OneNote. 
OneNote as a data feed 
Surface domain-specific data like products, recipes, web sites, shopping lists, todo items, news articles, etc. in OneNote 
within the context of your app experience. 
E.g. news reader apps, todo apps, health apps, food/restaurant apps, photo apps, etc.
Available today 
• Create page in default location 
• Create page in specific location 
• Query notebooks, sections, 
and section groups 
• Create notebooks and sections 
• PDF Rendering 
• Query pages* 
• Get page content* 
• Todo tags* 
Available soon 
• Patch page 
• Append/prepend 
• Full text search 
• Page thumbnails 
• Query images 
• Notebook sharing 
Planned 
• Office 365 support 
• Natural language search 
• Query for common 
entities
OneNote API != Database Service 
Save captivating content for users to view and annotate in OneNote 
Not likely the best store for machine data like XML, JSON, etc. or large media like HD 
movies. 
OneNote is a store for notes and memories 
Store relevant pieces of content that link OneNote users back to your app 
Store notes, todo lists, websites, receipts, workout summaries, annotations, etc. 
Account for end users modifying and deleting pages saved by your app 
Not likely the primary store for most apps. 
A great data source for apps to make better decisions and a contextual entry point for 
your app.
OneNote API @ Silicon Valley Code Camp
Simple, simple, simple to use 
Works as you would expect 
 Standard HTTP verbs on resource endpoints: ~/notebooks, ~/sections, ~/pages 
 Restful notation: ~/notebooks/{id}, ~/sections/{id}/page 
Use your favorite HTTP request and JSON parsing libraries (jQuery, JSON.NET, 
etc.) 
You don’t have to learn a new query language 
 OData v4 verbs such as filter, select, orderby, etc. all work as expected 
OAuth made easy 
No OAuth knowledge required. Libraries available for most popular platforms 
Register your App with Windows Live and append the access token to the 
request headers
WL.Event.subscribe("auth.login", onLogin); 
WL.init({ 
client_id: 'YOUR CLIENT ID GOES HERE', 
redirect_uri: 'YOUR APP REDIRECT GOES HERE', 
scope: ["wl.signin", //wl sign in access 
“wl.offline_access", //if your app needs to refresh the token 
"office.onenote", //read access to all pages 
"office.onenote_create", //create pages in any location 
"office.onenote_update_by_app", //edit pages modified by app 
"office.onenote_update" //full access to all pages and notebooks 
], 
response_type: "token" 
});
WL.Event.subscribe("auth.login", onLogin); 
WL.init({ 
client_id: 'YOUR CLIENT ID GOES HERE', 
redirect_uri: 'YOUR APP REDIRECT GOES HERE', 
scope: ["wl.signin", //wl sign in access 
“wl.offline_access", //if your app needs to refresh the token 
"office.onenote", //read access to all pages 
"office.onenote_create", //create pages in any location 
"office.onenote_update_by_app", //edit pages modified by app 
"office.onenote_update" //full access to all pages and notebooks 
], 
response_type: "token" 
});
function onLogin(session) { 
if (!session.error) { 
//extracts the token from the cookies 
access_token = getAccessToken(); 
$.ajax({ 
accept: "application/json", 
type: "GET", 
url: "https://www.onenote.com/api/v1.0/notebooks", 
//appends the access token to the request 
headers: { "Authorization": "Bearer " + access_token }, 
complete: function (data, status, xhr) { 
$(“#response").text(data.responseText); 
} 
}); 
} 
}
A 
p 
p 
s 
API Surface 
Save to OneNote – News360, Feedly, Neat scanner, IFTTT action 
Enumerate hierarchy – Location pickers 
Query pages and get content- Query pages, display page content within your app or open page in 
OneNote, IFTTT triggers (coming soon) 
Implicit capture – Journal and event apps, health apps for wearables, smart appliances, etc.
A 
p 
p 
s 
API Surface 
Save to OneNote – News360, Feedly, Neat scanner, IFTTT action 
Enumerate hierarchy – Location pickers 
Query pages and get content- Query pages, display page content within your app or open page in 
OneNote, IFTTT triggers (coming soon) 
Implicit capture – Journal and event apps, health apps for wearables, smart appliances, etc. 
OneNote as a source for user memories– Get images, documents, recipes, news, articles, business cards, 
location info, etc. captured by other 3rd party apps and build beautiful vertical experiences. 
Take advantage of full text search with spell correction to find relevant content
A 
p 
p 
s 
API Surface 
Save to OneNote – News360, Feedly, Neat scanner, IFTTT action 
Enumerate hierarchy – Location pickers 
Query pages and get content- Query pages, display page content within your app or open page in 
OneNote, IFTTT triggers (coming soon) 
Implicit capture – Journal and event apps, health apps for wearables, smart appliances, etc. 
OneNote as a source for user memories– Get images, documents, recipes, news, articles, business cards, 
location info, etc. captured by other 3rd party apps and build beautiful vertical experiences. 
Take advantage of full text search with spell correction to find relevant content 
Intelligent more personal Apps and devices – Build smarter apps that naturally help users get more done: 
• Digital assistants will use the API to bring up the list of groceries if passing by the market 
• Next gen appliances will show a list of recipes in my cookbook I can make with the ingredients I have 
• Restaurant apps know about my food preferences and use them to suggest a list of restaurants
OneNote API @ Silicon Valley Code Camp
What did we learn? 
Implicit capture apps are the future 
Smart and un-obtrusive. They add value without requiring explicit user action. 
Users don’t want to enter data. They want to use it - annotate, learn, and act on it. 
Mimic how humans effortlessly remember and evoke memories 
OneNote is the best place to store user memories 
Next-gen apps will add more value while requiring less 
human input 
New natural interfaces and devices such as wearables and smart appliances will require less and less 
human interaction. They will be configured to capture data in response to specific stimuli. 
Draw insights from captured data with the purpose of helping users: 
 Do more and more efficiently 
 Stay healthier and reach their activity goals 
 Suggest places to eat, movies to watch, recipes to try, etc. based on their interests
 OneNote = Your notes available anywhere 
 OneNote + API = Your memories available 
anywhere 
 Increase your app usage by saving to OneNote 
 Help us make OneNote the place for users to 
remember anything 
 Build more personal apps with the OneNote API
Apiary console: http://dev.onenote.com/dev/docs 
Apigee console: https://apigee.com/onenote/embed/console/onenote 
Beta features and news: http://blogs.msdn.com/b/onenotedev/ 
API documentation: http://msdn.microsoft.com/en-us/library/office/dn575425.aspx 
Code samples: https://github.com/OneNoteDev 
Feature requests and feedback: https://onenote.uservoice.com/forums/245490- 
onenote-developers 
Issues and technical questions: http://stackoverflow.com/questions/tagged/onenote 
Social: https://twitter.com/onenotedev 
API roadmap: http://blogs.msdn.com/b/onenotedev/archive/2014/03/25/onenote-api- 
near-term-backlog.aspx 
Email: ivenado@microsoft.com
Session feedback: http://aka.ms/omar

More Related Content

PPTX
Types of Shots
PPTX
Website Hosting Services in India
PPTX
多媒體作業10314142
PPT
How to Clean Your Betta Fish Tank
PPTX
Tugas 7 tatanan materi berwujud cair
PDF
Desga Prawid e commerce-2
PPT
Presentation1
PPTX
Assistive technology1
Types of Shots
Website Hosting Services in India
多媒體作業10314142
How to Clean Your Betta Fish Tank
Tugas 7 tatanan materi berwujud cair
Desga Prawid e commerce-2
Presentation1
Assistive technology1

Viewers also liked (12)

PPTX
7 г метро
PPT
презентация гоголь 205 лет
PDF
Teatr #2
PPTX
PDF
the smart zebra and the sly fox.fables kids
PPTX
Jail help
PPTX
ATreVEE IN: Using Natural Interaction in Procedure Simulator for Training in ...
PPTX
基礎海洋生態學 期末報告 第三組
PDF
Www.slideshare.net_jackie72_operational-kpis-and-perform
PPTX
Landasa pendidikan
PPTX
Initial title research
PDF
Ieee 2014 2015 matlab project titles-globalsoft technologies
7 г метро
презентация гоголь 205 лет
Teatr #2
the smart zebra and the sly fox.fables kids
Jail help
ATreVEE IN: Using Natural Interaction in Procedure Simulator for Training in ...
基礎海洋生態學 期末報告 第三組
Www.slideshare.net_jackie72_operational-kpis-and-perform
Landasa pendidikan
Initial title research
Ieee 2014 2015 matlab project titles-globalsoft technologies
Ad

Similar to OneNote API @ Silicon Valley Code Camp (20)

PDF
OneNote to Rule Them All.pdf
PPTX
Webinar - Microsoft OneNote for Beginners - 2016-06-09
PPTX
Making your life easier with Microsoft OneNote 2010
PPTX
OneNote to Rule Them All Slides.pptx
PDF
(Ebook) OneNote Secrets: 100 Tips for OneNote 2013 and 2016 by Stefan Wischne...
PDF
Why OneNote?
PPTX
Chris OBrien - Weaving Enterprise Solutions into Office Products
PPTX
Office 365 pills premiere summary
DOCX
Microsoft OneNote Guidebook
PPTX
Microsoft OneNote in SharePoint
DOCX
MS OneNote 2013
PPTX
Webinar - Microsoft OneNote for Nonprofits and Libraries - 2015-07-30
PPTX
Evernote & OneDrive
PDF
(Ebook) OneNote Secrets: 100 Tips for OneNote 2013 and 2016 by Stefan Wischne...
PPTX
Top 10 OneNote Add-ins - Executive Should Use
PPTX
About Communication technology full topics
DOCX
Go Paperless with Microsoft OneNote
PDF
Abstracting and Structuring Web contents for supporting Personal Web Experie...
PPTX
OneNote Overview
PPTX
Microsoft OneNote
OneNote to Rule Them All.pdf
Webinar - Microsoft OneNote for Beginners - 2016-06-09
Making your life easier with Microsoft OneNote 2010
OneNote to Rule Them All Slides.pptx
(Ebook) OneNote Secrets: 100 Tips for OneNote 2013 and 2016 by Stefan Wischne...
Why OneNote?
Chris OBrien - Weaving Enterprise Solutions into Office Products
Office 365 pills premiere summary
Microsoft OneNote Guidebook
Microsoft OneNote in SharePoint
MS OneNote 2013
Webinar - Microsoft OneNote for Nonprofits and Libraries - 2015-07-30
Evernote & OneDrive
(Ebook) OneNote Secrets: 100 Tips for OneNote 2013 and 2016 by Stefan Wischne...
Top 10 OneNote Add-ins - Executive Should Use
About Communication technology full topics
Go Paperless with Microsoft OneNote
Abstracting and Structuring Web contents for supporting Personal Web Experie...
OneNote Overview
Microsoft OneNote
Ad

Recently uploaded (20)

PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
Understanding Forklifts - TECH EHS Solution
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
medical staffing services at VALiNTRY
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
AI in Product Development-omnex systems
PPTX
ai tools demonstartion for schools and inter college
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PPTX
Introduction to Artificial Intelligence
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
top salesforce developer skills in 2025.pdf
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
Nekopoi APK 2025 free lastest update
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
How to Choose the Right IT Partner for Your Business in Malaysia
Understanding Forklifts - TECH EHS Solution
2025 Textile ERP Trends: SAP, Odoo & Oracle
medical staffing services at VALiNTRY
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
AI in Product Development-omnex systems
ai tools demonstartion for schools and inter college
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Introduction to Artificial Intelligence
PTS Company Brochure 2025 (1).pdf.......
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
How to Migrate SBCGlobal Email to Yahoo Easily
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
top salesforce developer skills in 2025.pdf
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Odoo POS Development Services by CandidRoot Solutions
Nekopoi APK 2025 free lastest update
Navsoft: AI-Powered Business Solutions & Custom Software Development

OneNote API @ Silicon Valley Code Camp

  • 2.   • • •   • • •
  • 3.  Free on all platforms • Windows • Windows Phone • Mac OS X • iOS • Android and Android Wear • And on the web with OneNote Online  Pre-installed with every new Windows device  New 1st party experiences • Office Lens for WP: Your pocket scanner. Fixes, enhances, and makes pictures readable • OneNote Clipper: Clip the web using your favorite browser • me@onenote.com: Emails saved to OneNote  10’s of millions of users  15 GB of free storage with OneDrive  No upload quota
  • 4. Lightweight, simple, and available anywhere RESTful CRUD API for Notes Built on JSON, HTML, and OData Find anything quickly Entity recognition, image/audio/video processing, schematized content and metadata Full text search and structured queries Natural language search Your memory store in the cloud One place for all your memories. Never forget anything again. Effortlessly evoke your memories whenever you need them Enable more personalized devices, apps, and smarter digital assistants Enable next gen apps to start bridging personal data silos
  • 6. Make your existing apps more personal Tap into users notes and memories and improve your app experience using the power of full text search Leverage data saved by other apps and devices E.g. A restaurant app can make better suggestions based on previously visited restaurants or recipes saved to OneNote. A retail app can notify users when items they saved to OneNote go on sale. Use OneNote to increase your app usage Enable users to save content for later to OneNote from within your app. Use OneNote’s powerful canvas to create captivating layouts that link users back to your app when they search their memories in OneNote. OneNote as a data feed Surface domain-specific data like products, recipes, web sites, shopping lists, todo items, news articles, etc. in OneNote within the context of your app experience. E.g. news reader apps, todo apps, health apps, food/restaurant apps, photo apps, etc.
  • 7. Available today • Create page in default location • Create page in specific location • Query notebooks, sections, and section groups • Create notebooks and sections • PDF Rendering • Query pages* • Get page content* • Todo tags* Available soon • Patch page • Append/prepend • Full text search • Page thumbnails • Query images • Notebook sharing Planned • Office 365 support • Natural language search • Query for common entities
  • 8. OneNote API != Database Service Save captivating content for users to view and annotate in OneNote Not likely the best store for machine data like XML, JSON, etc. or large media like HD movies. OneNote is a store for notes and memories Store relevant pieces of content that link OneNote users back to your app Store notes, todo lists, websites, receipts, workout summaries, annotations, etc. Account for end users modifying and deleting pages saved by your app Not likely the primary store for most apps. A great data source for apps to make better decisions and a contextual entry point for your app.
  • 10. Simple, simple, simple to use Works as you would expect  Standard HTTP verbs on resource endpoints: ~/notebooks, ~/sections, ~/pages  Restful notation: ~/notebooks/{id}, ~/sections/{id}/page Use your favorite HTTP request and JSON parsing libraries (jQuery, JSON.NET, etc.) You don’t have to learn a new query language  OData v4 verbs such as filter, select, orderby, etc. all work as expected OAuth made easy No OAuth knowledge required. Libraries available for most popular platforms Register your App with Windows Live and append the access token to the request headers
  • 11. WL.Event.subscribe("auth.login", onLogin); WL.init({ client_id: 'YOUR CLIENT ID GOES HERE', redirect_uri: 'YOUR APP REDIRECT GOES HERE', scope: ["wl.signin", //wl sign in access “wl.offline_access", //if your app needs to refresh the token "office.onenote", //read access to all pages "office.onenote_create", //create pages in any location "office.onenote_update_by_app", //edit pages modified by app "office.onenote_update" //full access to all pages and notebooks ], response_type: "token" });
  • 12. WL.Event.subscribe("auth.login", onLogin); WL.init({ client_id: 'YOUR CLIENT ID GOES HERE', redirect_uri: 'YOUR APP REDIRECT GOES HERE', scope: ["wl.signin", //wl sign in access “wl.offline_access", //if your app needs to refresh the token "office.onenote", //read access to all pages "office.onenote_create", //create pages in any location "office.onenote_update_by_app", //edit pages modified by app "office.onenote_update" //full access to all pages and notebooks ], response_type: "token" });
  • 13. function onLogin(session) { if (!session.error) { //extracts the token from the cookies access_token = getAccessToken(); $.ajax({ accept: "application/json", type: "GET", url: "https://www.onenote.com/api/v1.0/notebooks", //appends the access token to the request headers: { "Authorization": "Bearer " + access_token }, complete: function (data, status, xhr) { $(“#response").text(data.responseText); } }); } }
  • 14. A p p s API Surface Save to OneNote – News360, Feedly, Neat scanner, IFTTT action Enumerate hierarchy – Location pickers Query pages and get content- Query pages, display page content within your app or open page in OneNote, IFTTT triggers (coming soon) Implicit capture – Journal and event apps, health apps for wearables, smart appliances, etc.
  • 15. A p p s API Surface Save to OneNote – News360, Feedly, Neat scanner, IFTTT action Enumerate hierarchy – Location pickers Query pages and get content- Query pages, display page content within your app or open page in OneNote, IFTTT triggers (coming soon) Implicit capture – Journal and event apps, health apps for wearables, smart appliances, etc. OneNote as a source for user memories– Get images, documents, recipes, news, articles, business cards, location info, etc. captured by other 3rd party apps and build beautiful vertical experiences. Take advantage of full text search with spell correction to find relevant content
  • 16. A p p s API Surface Save to OneNote – News360, Feedly, Neat scanner, IFTTT action Enumerate hierarchy – Location pickers Query pages and get content- Query pages, display page content within your app or open page in OneNote, IFTTT triggers (coming soon) Implicit capture – Journal and event apps, health apps for wearables, smart appliances, etc. OneNote as a source for user memories– Get images, documents, recipes, news, articles, business cards, location info, etc. captured by other 3rd party apps and build beautiful vertical experiences. Take advantage of full text search with spell correction to find relevant content Intelligent more personal Apps and devices – Build smarter apps that naturally help users get more done: • Digital assistants will use the API to bring up the list of groceries if passing by the market • Next gen appliances will show a list of recipes in my cookbook I can make with the ingredients I have • Restaurant apps know about my food preferences and use them to suggest a list of restaurants
  • 18. What did we learn? Implicit capture apps are the future Smart and un-obtrusive. They add value without requiring explicit user action. Users don’t want to enter data. They want to use it - annotate, learn, and act on it. Mimic how humans effortlessly remember and evoke memories OneNote is the best place to store user memories Next-gen apps will add more value while requiring less human input New natural interfaces and devices such as wearables and smart appliances will require less and less human interaction. They will be configured to capture data in response to specific stimuli. Draw insights from captured data with the purpose of helping users:  Do more and more efficiently  Stay healthier and reach their activity goals  Suggest places to eat, movies to watch, recipes to try, etc. based on their interests
  • 19.  OneNote = Your notes available anywhere  OneNote + API = Your memories available anywhere  Increase your app usage by saving to OneNote  Help us make OneNote the place for users to remember anything  Build more personal apps with the OneNote API
  • 20. Apiary console: http://dev.onenote.com/dev/docs Apigee console: https://apigee.com/onenote/embed/console/onenote Beta features and news: http://blogs.msdn.com/b/onenotedev/ API documentation: http://msdn.microsoft.com/en-us/library/office/dn575425.aspx Code samples: https://github.com/OneNoteDev Feature requests and feedback: https://onenote.uservoice.com/forums/245490- onenote-developers Issues and technical questions: http://stackoverflow.com/questions/tagged/onenote Social: https://twitter.com/onenotedev API roadmap: http://blogs.msdn.com/b/onenotedev/archive/2014/03/25/onenote-api- near-term-backlog.aspx Email: ivenado@microsoft.com

Editor's Notes

  • #3: This slide is required. Do NOT delete. This should be the first slide after your Title Slide. This is an important year and we need to arm our attendees with the information they can use to Grow Share! Please ensure that your objectives are SMART (defined below) and that they will enable them to go in and win against the competition to grow share. If you have questions, please contact your Track PM for guidance. We have also posted guidance on writing good objectives, out on the Speaker Portal (https://www.mytechready.com).   This slide should introduce the session by identifying how this information helps the attendee, partners and customers be more successful. Why is this content important? This slide should call out what’s important about the session (sort of the why should we care, why is this important and how will it help our customers/partners be successful) as well as the key takeaways/objectives associated with the session. Call out what attendees will be able to execute on using the information gained in this session. What will they be able to walk away from this session and execute on with their customers. Good Objectives should be SMART (specific, measurable, achievable, realistic, time-bound). Focus on the key takeaways and why this information is important to the attendee, our partners and our customers. Each session has objectives defined and published on www.mytechready.com, please work with your Track PM to call these out here in the slide deck. If you have questions, please contact your Track PM. See slide 5 in this template for a complete list of Tracks and TPMs.
  • #20: This slide is required. Do NOT delete. This should be the first slide after your Title Slide. This is an important year and we need to arm our attendees with the information they can use to Grow Share! Please ensure that your objectives are SMART (defined below) and that they will enable them to go in and win against the competition to grow share. If you have questions, please contact your Track PM for guidance. We have also posted guidance on writing good objectives, out on the Speaker Portal (https://www.mytechready.com).   This slide should introduce the session by identifying how this information helps the attendee, partners and customers be more successful. Why is this content important? This slide should call out what’s important about the session (sort of the why should we care, why is this important and how will it help our customers/partners be successful) as well as the key takeaways/objectives associated with the session. Call out what attendees will be able to execute on using the information gained in this session. What will they be able to walk away from this session and execute on with their customers. Good Objectives should be SMART (specific, measurable, achievable, realistic, time-bound). Focus on the key takeaways and why this information is important to the attendee, our partners and our customers. Each session has objectives defined and published on www.mytechready.com, please work with your Track PM to call these out here in the slide deck. If you have questions, please contact your Track PM. See slide 5 in this template for a complete list of Tracks and TPMs.