Accounts-account-email-domain-usernames-mailboxName-webmail:GET
(Difference between revisions)
				
																
				
				
								
				Mike.robski  (Talk | contribs) m (1 revision: Release 87)  | 
		 (→Response)  | 
		||
| Line 40: | Line 40: | ||
    "type": "{type}",  |     "type": "{type}",  | ||
    "allowUpgrade": {allowUpgrade},  |     "allowUpgrade": {allowUpgrade},  | ||
| + |    "theme": "{theme}",  | ||
| + |    "language": "{language}",  | ||
| + |    "timezone": "{timezone}",  | ||
    "links": [  |     "links": [  | ||
       {  |        {  | ||
| Line 57: | Line 60: | ||
; type - ''string'' - one of "standard", "activesync" or "premium"  | ; type - ''string'' - one of "standard", "activesync" or "premium"  | ||
: OpenXchange account type.  | : OpenXchange account type.  | ||
| + | ; theme - ''string''  | ||
| + | : Theme identifier for setting a specific theme when creating an OX account  | ||
| + | ; language - ''string''  | ||
| + | : OpenXchange account locale of type 'en_US'.  | ||
| + | ; timezone - ''string''  | ||
| + | : OpenXchange account timezone of type 'America/Chicago'.  | ||
== Examples ==  | == Examples ==  | ||
| Line 74: | Line 83: | ||
    "type": "standard",    |     "type": "standard",    | ||
    "allowUpgrade": true,    |     "allowUpgrade": true,    | ||
| + |    "theme": "test_theme",   | ||
| + |    "language": "en_US",   | ||
| + |    "timezone": "America/Chicago",  | ||
    "links": [  |     "links": [  | ||
       {  |        {  | ||
Revision as of 07:11, 14 May 2014
GET /accounts/{account}/email/{domain}/usernames/{mailboxName}/webmail
Gets OpenXchange account type.
Contents | 
Request
GET /accounts/{account}/email/{domain}/usernames/{mailboxName}/webmail
URI Parameters
- account - string
 - domain - string
 - mailboxName - string
 
Request Headers
- Authorization - HTTP Authorization header [1]
 - The Authentication credentials of the client application.
 
- Content-Type
 -  Required. Set this header to 
application/json; charset=UTF-8 
Response
Status Code
- 200 OK
 - Success
 
- 401 Unauthorized
 - The supplied credentials are invalid or do not provide permissions for this operation.
 
- 404 Not Found
 - The domain name does not exist.
 
Response Body
{
   "authToken": "{authenticationToken}",
   "type": "{type}",
   "allowUpgrade": {allowUpgrade},
   "theme": "{theme}",
   "language": "{language}",
   "timezone": "{timezone}",
   "links": [
      {
         "location": "{APIBaseURL}/accounts/{account}/email/{domain}/usernames/{mailboxName}/webmail/", 
         "rel": "self"
      }
   ]
}
 
Parameters
- authenticationToken - string
 - Authentication token value
 - allowUpgrade - boolean
 - OpenXchange allowUpgrade option
 - type - string - one of "standard", "activesync" or "premium"
 - OpenXchange account type.
 - theme - string
 - Theme identifier for setting a specific theme when creating an OX account
 - language - string
 - OpenXchange account locale of type 'en_US'.
 - timezone - string
 - OpenXchange account timezone of type 'America/Chicago'.
 
Examples
Success getting account type
Request
GET /accounts/test/email/test.com/usernames/john.smith/webmail
Response
200 OK
{
   "authToken": "PoiC9iyBehe13ZHWyhfa2eArKUJy+RJ5WpyN0eCBs2+Ns8SIdvhgto9zWLDnGZWlgTV9MuJ1F+//XnoKZWxjaRr2qh++437fChyxZmaHwe7g==",
   "type": "standard", 
   "allowUpgrade": true, 
   "theme": "test_theme", 
   "language": "en_US", 
   "timezone": "America/Chicago",
   "links": [
      {
         "href": "{APIBaseURL}/accounts/test/email/test.com/usernames/john.smith/webmail/", 
         "rel": "self"
      }
   ]
}