Difference between revisions of "SharePoint (Rest API)"

From Rackspace Email & Apps API
Jump to: navigation, search
(v1 - Current)
(remove accept header from examples to avoid confusion)
Line 20: Line 20:
  
 
<pre>
 
<pre>
get '/customers/999999/sharepoint/settings', 'text/xml'
+
get '/customers/999999/sharepoint/settings'
 
</pre>
 
</pre>
  
Line 67: Line 67:
 
''Example'':
 
''Example'':
 
<pre>
 
<pre>
put '/customers/123456/sharepoint/settings', 'text/xml',
+
put '/customers/123456/sharepoint/settings',
 
{
 
{
 
   'enabled' => 'true',
 
   'enabled' => 'true',

Revision as of 14:49, 12 January 2017

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'

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',
{
  'enabled' => 'true',
  'size' => '10.0'
}