Accounts-account-email-domain-webmail:GET
(Difference between revisions)
Mike.robski (Talk | contribs) m (1 revision: Release 87) |
Revision as of 15:24, 15 November 2013
GET /accounts/{account}/email/{domain}/webmail
Gets OpenXchange account type for the domain.
Contents |
Request
GET /accounts/{account}/email/{domain}/webmail
URI Parameters
- account - string
- domain - 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
{ "type": "{type}", "allowUpgrade": {allowUpgrade} "trialType": "{trialType}", "trialExpiration": "{trialExpiration}", "links": [ { "location": "{APIBaseURL}/accounts/{account}/email/{domain}/webmail/", "rel": "self" } ] }
Parameters
- type - string - one of "standard", "activesync" or "premium"
- Webmail account type.
- allowUpgrade - boolean
- Webmail allowUpgrade option value.
- trialType - string - one of "standard", "activesync", "premium" or null
- Trial account type. Null if not set.
- trialExpiration - date
- Expiration date of trial period formatted as YYYY-mm-dd. Null if not set.
Examples
Success getting account type
Request
GET /accounts/test/email/test.com/webmail
Response
200 OK { "type": "standard", "allowUpgrade": true, "trialType": "premium", "trialExpiration": "2018-10-28", "links": [ { "location": "{APIBaseURL}/accounts/{account}/email/{domain}/webmail/", "rel": "self" } ] }