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

[unchecked revision][checked revision]
(9 intermediate revisions by 3 users not shown)
Line 2: Line 2:
 
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.  
 
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]].  
+
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.
 
 
== MailStore API Test Application ==
 
[[File:MailStoreApiTesterScreenshot.png|200px|right|MailStore API Tester]]
 
 
 
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>.
 
 
 
The download comes with the entire C# source code of the test application.
 
 
 
[http://www.mailstore.com/support/MailStoreApiTester.zip Download MailStoreApiTester.zip]
 
 
 
<br style="clear: both;"/>
 
  
 
== Executing Regular API Functions ==
 
== Executing Regular API Functions ==
Line 21: Line 10:
 
<tt><nowiki>https://<mailstore-server>:8463/api/invoke/<function></nowiki></tt>
 
<tt><nowiki>https://<mailstore-server>:8463/api/invoke/<function></nowiki></tt>
  
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
+
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.
  
 
=== Example ===
 
=== Example ===
Line 61: Line 51:
 
}
 
}
 
</source>
 
</source>
 +
 +
The response includes a UTF-8 BOM.
 +
 +
To get a list of all available functions, send a POST request to <nowiki>https://<mailstore-server>:8463/api/get-metadata</nowiki>.
  
 
== Long Running Processes ==
 
== Long Running Processes ==
Line 91: Line 85:
 
<source lang="xml" toolbar="false" gutter="false">
 
<source lang="xml" toolbar="false" gutter="false">
 
POST /api/invoke/VerifyStore HTTP/1.1
 
POST /api/invoke/VerifyStore HTTP/1.1
User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
+
Authorization: Basic YWRtaW46UGFzc3cwcmQ=
Host: server.ms-spe.tesst:8470
+
User-Agent: curl/7.35.0
 +
Host: mailstore.example.com:8463
 
Accept: */*
 
Accept: */*
Cookie: MSWEB_MGM_AUTH=ZsByPD0aV4gYcGt3DL6elnMSKAaQTyRe%2fqHQCGFkbWlu
+
Content-Length: 5
X-AntiXsrfToken: BTp4ZWF5n8sDDpI0LG5z5bKYIzakLfzubebQCGFkbWlu
 
Content-Length: 28
 
 
Content-Type: application/x-www-form-urlencoded
 
Content-Type: application/x-www-form-urlencoded
 
+
instanceID=i20140122-01&id=2
+
id=11
 
</source>
 
</source>
  
Line 107: Line 100:
 
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
 
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
 
Pragma: no-cache
 
Pragma: no-cache
Content-Length: 359
+
Content-Length: 290
 
Content-Type: application/json
 
Content-Type: application/json
Expires: Wed, 22 Jan 2014 16:13:50 GMT
+
Expires: Wed, 25 Jun 2014 14:15:41 GMT
 
Server: Microsoft-HTTPAPI/2.0
 
Server: Microsoft-HTTPAPI/2.0
Set-Cookie: MSWEB_MGM_AUTH=wG332pdxKrKEbmAvsc81kOja7QOG7wDvbebQCGFkbWlu;path=/;secure;HttpOnly
+
Date: Thu, 26 Jun 2014 14:15:41 GMT
Date: Thu, 23 Jan 2014 16:13:49 GMT
 
 
   
 
   
 
{
 
{
 
   "error": null,
 
   "error": null,
   "token": "sa71c6ef0d880a14eb2220fa87f276710e",
+
   "token": "b3af0ebae4dd755d1a54b9756817baee",
  "antiXsrfToken": "Z1aU+nQNasuCl9pvKGTANHKfFuyG7wDvbebQCGFkbWlu",
 
 
   "statusVersion": 3,
 
   "statusVersion": 3,
 
   "statusCode": "running",
 
   "statusCode": "running",
Line 123: Line 114:
 
   "statusText": null,
 
   "statusText": null,
 
   "result": null,
 
   "result": null,
   "logOutput": "Verifying file group #2...\r\nCreating a list of messages to be verified...\r\n"
+
   "logOutput": "Verifying file group #11...\r\nCreating a list of messages to be verified...\r\n"
 
}
 
}
 
</source>
 
</source>
Line 130: Line 121:
 
<source lang="xml" toolbar="false" gutter="false">
 
<source lang="xml" toolbar="false" gutter="false">
 
POST /api/get-status HTTP/1.1
 
POST /api/get-status HTTP/1.1
User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
+
Authorization: Basic YWRtaW46UGFzc3cwcmQ=
Host: server.ms-spe.test:8470
+
User-Agent: curl/7.35.0
 +
Host: spe.example.com:8474
 
Accept: */*
 
Accept: */*
Cookie: MSWEB_MGM_AUTH=wG332pdxKrKEbmAvsc81kOja7QOG7wDvbebQCGFkbWlu
 
X-AntiXsrfToken: Z1aU+nQNasuCl9pvKGTANHKfFuyG7wDvbebQCGFkbWlu
 
 
Content-Length: 90
 
Content-Length: 90
 
Content-Type: application/x-www-form-urlencoded
 
Content-Type: application/x-www-form-urlencoded
+
 
token=sa71c6ef0d880a14eb2220fa87f276710e&lastKnownStatusVersion=3&millisecondsTimeout=5000
+
token=b3af0ebae4dd755d1a54b9756817baee&lastKnownStatusVersion=3&millisecondsTimeout=5000
 
</source>
 
</source>
  
Line 146: Line 136:
 
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
 
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
 
Pragma: no-cache
 
Pragma: no-cache
Content-Length: 309
+
Content-Length: 242
 
Content-Type: application/json
 
Content-Type: application/json
Expires: Wed, 22 Jan 2014 16:21:55 GMT
+
Expires: Wed, 25 Jun 2014 14:08:15 GMT
 
Server: Microsoft-HTTPAPI/2.0
 
Server: Microsoft-HTTPAPI/2.0
Set-Cookie: MSWEB_MGM_AUTH=Fo00yVkaGWgRFyhpf4KPDdDMdLrxM4AQb%2bbQCGFkbWlu;path=/;secure;HttpOnly
+
Date: Thu, 26 Jun 2014 14:08:15 GMT
Date: Thu, 23 Jan 2014 16:21:55 GMT
+
 
 
 
{
 
{
 
   "error": null,
 
   "error": null,
   "token": null,
+
   "token": "b3af0ebae4dd755d1a54b9756817baee",
  "antiXsrfToken": "Zrt40mK3S5xIG3HOce688LZ/QCXxM4AQb+bQCGFkbWlu",
+
   "statusVersion": 9,
   "statusVersion": 4,
 
 
   "statusCode": "running",
 
   "statusCode": "running",
 
   "percentProgress": 0,
 
   "percentProgress": 0,
 
   "statusText": null,
 
   "statusText": null,
 
   "result": null,
 
   "result": null,
   "logOutput": "500047 messages are about to be verified.\r\nVerifying...\r\n"
+
   "logOutput": " 400 messages verified...\r\n"
 
}
 
}
 
</source>
 
</source>
Line 169: Line 157:
 
<source lang="xml" toolbar="false" gutter="false">
 
<source lang="xml" toolbar="false" gutter="false">
 
HTTP/1.1 200 OK
 
HTTP/1.1 200 OK
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,postcheck=0,pre-check=0
+
Cache-Control: no-cache,private,no-store,must-revalidate,max-stale=0,post-check=0,pre-check=0
 
Pragma: no-cache
 
Pragma: no-cache
 
Content-Length: 242
 
Content-Length: 242
 
Content-Type: application/json
 
Content-Type: application/json
Expires: Tue, 29 Oct 2013 16:09:42 GMT
+
Expires: Wed, 25 Jun 2014 15:08:15 GMT
 
Server: Microsoft-HTTPAPI/2.0
 
Server: Microsoft-HTTPAPI/2.0
Set-Cookie: MSWEB_MGM_AUTH=ZsByPD0aV4gYcGt3DL6elnMSKAaQTyRe%2fqHQCGFkbWlu;path=/;secure;HttpOnly
+
Date: Thu, 26 Jun 2014 15:08:15 GMT
Date: Wed, 30 Oct 2013 16:09:41 GMT
+
 
 
 
{
 
{
 
   "error": null,
 
   "error": null,
 
   "token": null,
 
   "token": null,
  "antiXsrfToken": "Dg5geOu431l/5k36IXd13FlqLQ0Ki6ElcObQCGFkbWlu"
 
 
   "statusVersion": 269,
 
   "statusVersion": 269,
 
   "statusCode": "succeeded",
 
   "statusCode": "succeeded",

Revision as of 15:30, 23 March 2021

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

Some API functions start 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.