Is there a Office 365 development API like Google Docs? I was searching web but I was unable to find.
4 Answers
There's an API for the Exchange part of Office 365. Lync also has an API. You can also managed Sharepoint sites via the Client Object Model, web services or WebDAV APIs for uploading and downloading files
However I don't believe there's anything for manipulating documents online outside of using WebDav to push to a sharepoint site.

- 55,577
- 12
- 114
- 149
-
Blowdart's answer is right for now unfortunately, but I am hoping to get some answers on their forum here: http://community.office365.com/en-us/f/154/p/7521/30580.aspx – jamie-wilson Jul 13 '11 at 22:43
For anyone who's still coming across this page: There is now Office 365 APIs in preview covering the Files, Mail, Calendar and Contacts APIs. Visit http://msdn.microsoft.com/en-us/library/office/dn605892(v=office.15).aspx for more information

- 762
- 5
- 13
SharePoint 2010 introduced the Client Side Object Model and a REST API for working with list data. SharePoint 2013 builds on top of that with the app model, enabling a broader support for CSOM and REST using OAuth for app authorization that enables you to build apps (including working with documents, among many other features of SharePoint in O365). You can find more information at:
There is a new Office 365 API that was announced recently at the SharePoint Conference that broadens this support further to enable client applications to call those services as well.
http://msdn.microsoft.com/en-us/library/office/dn605892(v=office.15).aspx

- 151
- 1
- 3
Simple answer: not yet. Office 365 does have a developer guide on Sharepoint - http://www.microsoft.com/download/en/details.aspx?id=17069 .
But it appears their API is not the same as Google Docs because it is still early.

- 11,982
- 40
- 122
- 216
-
3Being closed source doesn't exclude an API (there is an SDK for Office and has been for years). Nor is Office = Office 365, which the question addresses. And of course Google Docs is proprietary and closed source too. – blowdart Jul 01 '11 at 03:22
-
1The question isn't asking if the Office 365 API is the same as the Google Docs API. It is asking if Office 365 has publicly accessible API documentation, the Google docs has publicly accessible API documentation. He's wondering, because he searched for Office 365 API documentation, but couldn't find any. – dave-holm Jul 01 '11 at 04:03