Difference between revisions of "Administration API - Using the API"

[unchecked revision][checked revision]
 
(15 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
In this chapter you can find a description of the MailStore Server Management API. With the Management API administrative tasks, such as managing users or storage locations, can be telecontrolled from a central location. Communication with the Management API is done using web requests through HTTPS.  
+
In this chapter you can find a description of the MailStore Server Administration API. With the Administration API administrative tasks, such as managing users or storage locations, can be remote controlled from a central location. Communication with the Administration API is done using web requests through HTTPS.  
  
For security reasons, the MailStore Server Management API is deactivated by default and has to be activated using the [[MailStore Server Service Configuration]].  
+
For security reasons, the MailStore Server Administration API is deactivated by default and has to be activated using the [[MailStore Server Service Configuration]]. When you are connecting to the API and using a hostname other than ''localhost'' or ''127.0.0.1'' you have to change the password of the admin user before.
  
[[File:MailStoreApiTesterScreenshot.png|200px|right|MailStore API Tester]]
+
== Executing Regular API Functions ==
== MailStore API Test Application ==
 
  
To help you better understand the samples on this page, we provide a small tool that is able to send commands to the API HTTPS server and display its responses. Simply download the ZIP file provided below and run the included <code>MailStoreApiTester.exe</code>.
+
To execute regular Management API functions, send a HTTP POST request to the following URL:
  
The download comes with the entire C# source code of the test application.
+
<tt><nowiki>https://<mailstore-server>:8463/api/invoke/<function></nowiki></tt>
  
[http://www.mailstore.com/support/MailStoreApiTester.zip Download MailStoreApiTester.zip]
+
With every request to the API, the username and password of a MailStore Administrator must be submitted following the [[wikipedia:Basic_access_authentication|HTTP Basic Authentication]] specification as described in RFC 2617.
 +
When a function needs additional data, this data must be send urlencoded. The HTTP header Content-Type: application/x-www-form-urlencoded should be set.
  
<br style="clear: both;"/>
+
=== Example ===
  
== General Information About Using the Management API ==
+
==== HTTP Request ====
 +
<source lang="xml" toolbar="false" gutter="false">
 +
POST /api/invoke/GetServerInfo HTTP/1.1
 +
Authorization: Basic YWRtaW46UGFzc3cwcmQ=
 +
User-Agent: curl/7.35.0
 +
Host: mailstore.example.com:8463
 +
Accept: */*
 +
Content-Length: 0
  
The Management API accepts commands under the following URLs:
+
</source>
  
/JSON/Invoke/'''MethodName'''
+
==== HTTP Response ====
 +
<source lang="xml" toolbar="false" gutter="false">
 +
HTTP/1.1 200 OK
 +
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
 +
Pragma: no-cache
 +
Content-Length: 251
 +
Content-Type: application/json
 +
Expires: Wed, 25 Jun 2014 14:13:43 GMT
 +
Server: Microsoft-HTTPAPI/2.0
 +
Date: Thu, 26 Jun 2014 14:13:43 GMT
 +
 +
{
 +
  "error": null,
 +
  "token": null,
 +
  "statusVersion": 2,
 +
  "statusCode": "succeeded",
 +
  "percentProgress": null,
 +
  "statusText": null,
 +
  "result": {
 +
    "version": "9.0.0.9702",
 +
    "machineName": "MAILSTORE"
 +
  },
 +
  "logOutput": null
 +
}
 +
</source>
  
and
+
The response includes a UTF-8 BOM.
  
/XML/Invoke/'''MethodName'''
+
To get a list of all available functions, send a POST request to <nowiki>https://<mailstore-server>:8463/api/get-metadata</nowiki>.
  
The first part of the path indicates the return format expected by the client (JSON or XML). JSON is the native return format of the MailStore Server Management API and is therefore recommended. If XML is requested, an internal automatic conversion to XML is made.
+
== Long Running Processes ==
  
Commands must be sent to the Management API using the HTTP POST method. The parameters should be transferred in the HTTP body and encoding must always be done using UTF-8. The return value is always UTF-8 encoded respectively.
+
Any API function call can turn into a long running process that may take several minutes or even hours to complete. To keep track of the progress a unique token is returned upon initial request, which can be used to periodically poll for status updates.  
  
<p class="msnote">'''Please note:''' A list of all available Management API commands is available in chapter [[MailStore Server Administration API Commands]].</p>
+
The overall process is as follows:
  
If the request cannot be processed, the server responds with HTTP error code 500, and the error message is returned as text/plain (not JSON or XML). An exception are asynchronous commands which use a special URL for status queries (as described below).
+
# Send HTTP POST to <tt><nowiki>https://<mailstore-server>:8463/api/invoke/VerifyStore</nowiki></tt> in order to execute the function.<br/>
 +
# Check the server's response for the keys <tt>token</tt>, <tt>statusCode</tt> and <tt>statusVersion</tt>.<br/>
 +
# To retrieve status updates, send periodic requests to <tt><nowiki>https://<mailstore-server>:8463/api/get-status</nowiki></tt> with the following parameters:<br/>
 +
{| class="wikitable" style="margin-left:35px"
 +
! Name
 +
! Description
 +
|-
 +
| <tt>token</tt>
 +
| The received unique token for the process.
 +
|-
 +
| <tt>lastKnownStatusVersion</tt>
 +
| Value of <tt>statusVersion</tt> from last response.
 +
|-
 +
| <tt>millisecondsTimeout</tt>
 +
| Time in milliseconds until the the server stops waiting for a new status update to send. If a new status update is available it will be sent to the client immediately, otherwise the last status is repeated.
 +
|}
 +
: 4. The process finished when the <tt>statusCode</tt> is not ''running''.
  
 
=== Example ===
 
=== Example ===
  
The following is an example for retrieving the information of the user ''johndoe''.
+
==== Initial HTTP Request ====
 
+
<source lang="xml" toolbar="false" gutter="false">
==== HTTP Request ====
+
POST /api/invoke/VerifyStore HTTP/1.1
 
+
Authorization: Basic YWRtaW46UGFzc3cwcmQ=
POST /JSON/Invoke/GetUserInfo HTTP/1.1
+
User-Agent: curl/7.35.0
...
+
Host: mailstore.example.com:8463
 +
Accept: */*
 +
Content-Length: 5
 +
Content-Type: application/x-www-form-urlencoded
 
   
 
   
userName=johndoe
+
id=11
 
+
</source>
==== HTTP Response  ====
 
  
HTTP/1.1 200 OK
+
==== Initial HTTP Response ====
Content-Type: application/json
+
<source lang="xml" toolbar="false" gutter="false">
...
+
HTTP/1.1 200 OK
 +
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
 +
Pragma: no-cache
 +
Content-Length: 290
 +
Content-Type: application/json
 +
Expires: Wed, 25 Jun 2014 14:15:41 GMT
 +
Server: Microsoft-HTTPAPI/2.0
 +
Date: Thu, 26 Jun 2014 14:15:41 GMT
 
   
 
   
{
+
{
    "userName": "johndoe",
+
  "error": null,
    "fullName": "John Doe",
+
  "token": "b3af0ebae4dd755d1a54b9756817baee",
    "authentication": "integrated",
+
  "statusVersion": 3,
    "emailAddresses": [
+
  "statusCode": "running",
        "[email protected]",
+
  "percentProgress": 0,
        "[email protected]"
+
  "statusText": null,
        ],
+
  "result": null,
    "privileges": "admin"
+
  "logOutput": "Verifying file group #11...\r\nCreating a list of messages to be verified...\r\n"
}
+
}
 +
</source>
  
== Asynchronously Executed Commands  ==
+
==== Periodic HTTP Request of Progress ====
 +
<source lang="xml" toolbar="false" gutter="false">
 +
POST /api/get-status HTTP/1.1
 +
Authorization: Basic YWRtaW46UGFzc3cwcmQ=
 +
User-Agent: curl/7.35.0
 +
Host: spe.example.com:8474
 +
Accept: */*
 +
Content-Length: 90
 +
Content-Type: application/x-www-form-urlencoded
 +
 
 +
token=b3af0ebae4dd755d1a54b9756817baee&lastKnownStatusVersion=3&millisecondsTimeout=5000
 +
</source>
  
Management API commands, whose execution typically take more time, are executed asynchronously. The server does not return the actual return value but a URL under which the current status (e.g. the return value for fully executed requests) can be requested.  
+
==== HTTP Response to Periodic Progress Requests ====
 +
<source lang="xml" toolbar="false" gutter="false">
 +
HTTP/1.1 200 OK
 +
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
 +
Pragma: no-cache
 +
Content-Length: 242
 +
Content-Type: application/json
 +
Expires: Wed, 25 Jun 2014 14:08:15 GMT
 +
Server: Microsoft-HTTPAPI/2.0
 +
Date: Thu, 26 Jun 2014 14:08:15 GMT
 +
 
 +
{
 +
  "error": null,
 +
  "token": "b3af0ebae4dd755d1a54b9756817baee",
 +
  "statusVersion": 9,
 +
  "statusCode": "running",
 +
  "percentProgress": 0,
 +
  "statusText": null,
 +
  "result": null,
 +
  "logOutput": "  400 messages verified...\r\n"
 +
}
 +
</source>
  
One example for an asynchronously executed API method is ''RebuildStoreIndex''.  
+
==== Final HTTP Response ====
 +
<source lang="xml" toolbar="false" gutter="false">
 +
HTTP/1.1 200 OK
 +
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
 +
Pragma: no-cache
 +
Content-Length: 242
 +
Content-Type: application/json
 +
Expires: Wed, 25 Jun 2014 15:08:15 GMT
 +
Server: Microsoft-HTTPAPI/2.0
 +
Date: Thu, 26 Jun 2014 15:08:15 GMT
 +
 +
{
 +
  "error": null,
 +
  "token": null,
 +
  "statusVersion": 269,
 +
  "statusCode": "succeeded",
 +
  "percentProgress": null,
 +
  "statusText": null,
 +
  "result": null,
 +
  "logOutput": null
 +
}
 +
</source>
  
=== Sample Return Value  ===
+
== Error Handling ==
 +
Additionally to handling protocol specific issues such as HTTP or TCP errors, developers receive detailed information from the API itself in case the request did not succeed.
  
{
+
In case the request was successfully be processed, the response will contain:
    "statusToken": "C467B22E-7057-43BA-B79B-C6140ED514BD",
 
    "statusUrl": "/JSON/Status/C467B22E-7057-43BA-B79B-C6140ED514BD"
 
}
 
  
If a JSON object is returned which contains a ''statusUrl'' value, this URL can be used to ask for the current status.
+
  "error": null
  
=== Structure of the Status Object  ===
+
Otherwise in the event of a failure the error key will have the following structure
  
{
+
  "error": {
    "status": "running | succeeded | failed",
+
     "message": string,
    "result": { JSON Object },
+
     "details": string
     "progressPercentage": 0..100,
+
  }
     "messages": [
 
        {
 
            "type": "line | information | warning | error | unknown",
 
            "text": "..."
 
        }
 
    ]
 
}
 
  
If the returned status is ''succeeded'' or ''failed'', each additional status query under the same URL will fail, because once the status is delivered, all internally stored status information is deleted.
+
allowing developers to display a meaningful error message and further technical details.
  
[[de:MailStore_Server_Management_API]]
+
[[de:MailStore_Server_Administration_API]]
 +
[[en:MailStore_Server_Administration_API]]

Latest revision as of 12:08, 7 February 2024

In this chapter you can find a description of the MailStore Server Administration API. With the Administration API administrative tasks, such as managing users or storage locations, can be remote controlled from a central location. Communication with the Administration API is done using web requests through HTTPS.

For security reasons, the MailStore Server Administration API is deactivated by default and has to be activated using the MailStore Server Service Configuration. When you are connecting to the API and using a hostname other than localhost or 127.0.0.1 you have to change the password of the admin user before.

Executing Regular API Functions

To execute regular Management API functions, send a HTTP POST request to the following URL:

https://<mailstore-server>:8463/api/invoke/<function>

With every request to the API, the username and password of a MailStore Administrator must be submitted following the HTTP Basic Authentication specification as described in RFC 2617. When a function needs additional data, this data must be send urlencoded. The HTTP header Content-Type: application/x-www-form-urlencoded should be set.

Example

HTTP Request

POST /api/invoke/GetServerInfo HTTP/1.1
Authorization: Basic YWRtaW46UGFzc3cwcmQ=
User-Agent: curl/7.35.0
Host: mailstore.example.com:8463
Accept: */*
Content-Length: 0

HTTP Response

HTTP/1.1 200 OK
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
Pragma: no-cache
Content-Length: 251
Content-Type: application/json
Expires: Wed, 25 Jun 2014 14:13:43 GMT
Server: Microsoft-HTTPAPI/2.0
Date: Thu, 26 Jun 2014 14:13:43 GMT
 
{
  "error": null,
  "token": null,
  "statusVersion": 2,
  "statusCode": "succeeded",
  "percentProgress": null,
  "statusText": null,
  "result": {
    "version": "9.0.0.9702",
    "machineName": "MAILSTORE"
  },
  "logOutput": null
}

The response includes a UTF-8 BOM.

To get a list of all available functions, send a POST request to https://<mailstore-server>:8463/api/get-metadata.

Long Running Processes

Any API function call can turn into a long running process that may take several minutes or even hours to complete. To keep track of the progress a unique token is returned upon initial request, which can be used to periodically poll for status updates.

The overall process is as follows:

  1. Send HTTP POST to https://<mailstore-server>:8463/api/invoke/VerifyStore in order to execute the function.
  2. Check the server's response for the keys token, statusCode and statusVersion.
  3. To retrieve status updates, send periodic requests to https://<mailstore-server>:8463/api/get-status with the following parameters:
Name Description
token The received unique token for the process.
lastKnownStatusVersion Value of statusVersion from last response.
millisecondsTimeout Time in milliseconds until the the server stops waiting for a new status update to send. If a new status update is available it will be sent to the client immediately, otherwise the last status is repeated.
4. The process finished when the statusCode is not running.

Example

Initial HTTP Request

POST /api/invoke/VerifyStore HTTP/1.1
Authorization: Basic YWRtaW46UGFzc3cwcmQ=
User-Agent: curl/7.35.0
Host: mailstore.example.com:8463
Accept: */*
Content-Length: 5
Content-Type: application/x-www-form-urlencoded
 
id=11

Initial HTTP Response

HTTP/1.1 200 OK
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
Pragma: no-cache
Content-Length: 290
Content-Type: application/json
Expires: Wed, 25 Jun 2014 14:15:41 GMT
Server: Microsoft-HTTPAPI/2.0
Date: Thu, 26 Jun 2014 14:15:41 GMT
 
{
  "error": null,
  "token": "b3af0ebae4dd755d1a54b9756817baee",
  "statusVersion": 3,
  "statusCode": "running",
  "percentProgress": 0,
  "statusText": null,
  "result": null,
  "logOutput": "Verifying file group #11...\r\nCreating a list of messages to be verified...\r\n"
}

Periodic HTTP Request of Progress

POST /api/get-status HTTP/1.1
Authorization: Basic YWRtaW46UGFzc3cwcmQ=
User-Agent: curl/7.35.0
Host: spe.example.com:8474
Accept: */*
Content-Length: 90
Content-Type: application/x-www-form-urlencoded
  
token=b3af0ebae4dd755d1a54b9756817baee&lastKnownStatusVersion=3&millisecondsTimeout=5000

HTTP Response to Periodic Progress Requests

HTTP/1.1 200 OK
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
Pragma: no-cache
Content-Length: 242
Content-Type: application/json
Expires: Wed, 25 Jun 2014 14:08:15 GMT
Server: Microsoft-HTTPAPI/2.0
Date: Thu, 26 Jun 2014 14:08:15 GMT
  
{
  "error": null,
  "token": "b3af0ebae4dd755d1a54b9756817baee",
  "statusVersion": 9,
  "statusCode": "running",
  "percentProgress": 0,
  "statusText": null,
  "result": null,
  "logOutput": "  400 messages verified...\r\n"
}

Final HTTP Response

HTTP/1.1 200 OK
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
Pragma: no-cache
Content-Length: 242
Content-Type: application/json
Expires: Wed, 25 Jun 2014 15:08:15 GMT
Server: Microsoft-HTTPAPI/2.0
Date: Thu, 26 Jun 2014 15:08:15 GMT
 
{
  "error": null,
  "token": null,
  "statusVersion": 269,
  "statusCode": "succeeded",
  "percentProgress": null,
  "statusText": null,
  "result": null,
  "logOutput": null
}

Error Handling

Additionally to handling protocol specific issues such as HTTP or TCP errors, developers receive detailed information from the API itself in case the request did not succeed.

In case the request was successfully be processed, the response will contain:

 "error": null

Otherwise in the event of a failure the error key will have the following structure

 "error": {
   "message": string,
   "details": string
 }

allowing developers to display a meaningful error message and further technical details.