Difference between revisions of "SharePoint (Rest API)"
From Rackspace Email & Apps API
(remove accept header from examples to avoid confusion) |
|||
Line 1: | Line 1: | ||
__TOC__ | __TOC__ | ||
+ | |||
== v1 - Current == | == v1 - Current == |
Latest revision as of 12:12, 15 September 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' }