SharePoint (Rest API)

From Rackspace Email & Apps API
Revision as of 08:49, 1 March 2016 by Appscp (talk | contribs) (v1 - Current)
Jump to: navigation, search

v1 - Current

Settings

Show

URL:

[GET] https://api.emailsrvr.com/v1/customers/(customer account number)/sharepoint/settings


Description:

Returns the status and quota size of the SharePoint service.


Example:

get '/customers/999999/sharepoint/settings', 'text/xml'

XML Result Example:

<?xml version="1.0" encoding="utf-8"?>
<SharePointSettings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:xml:SharePointSettings">
  <enabled>true</enabled>
  <size>0.25</size>
</SharePointSettings>


Json Result Example:

{"enabled":true,"size":0.25}

Edit (Reseller Only)

URL:

[PUT] https://api.emailsrvr.com/v1/customers/(customer account number)/sharepoint/settings


Description:

This operation will modify SharePoint's settings.


Field Name Data Type Description
enabled boolean Whether SharePoint is enabled or not. By enabling SharePoint you and/or your customers are agreeing to Rackspace's SharePoint Services Terms and Conditions.
size double SharePoint's storage size in GB. Valid values are .25 and any integer between 1 and 50 inclusive. This field will be ignored when SharePoint is disabled. (default value is 0.25GB)

Example:

put '/customers/123456/sharepoint/settings', 'text/xml',
{
  'enabled' => 'true',
  'size' => '10.0'
}