The API consists of two generations that operate side by side: one legacy set (the classic .jsp-endpoints for existing Outlook plugins) and a modern REST-variant below /FileCap/api/..., which returns structured JSON responses. New integrations should preferably use the modern endpoints.
Key features:
Each call is secured with an API key for each portal; selected endpoints also support a device-specific key or JWT token.
Getting Started
/FileCap. Use your server URL without a trailing slash, for example https://filecap.example.com. Calls are then constructed as {basis-URL}/FileCap/<pad>.APIKey Request your FileCap tenant from your administrator and include it in every request (except for the public validate/*- and password policy endpoints).json
{
"success": true,
"value": { },
"errorMessage": null
}
If an error occurs, success equal to false and the reason is stated in errorMessage.
/api/user/devices/register, confirm the code sent to you by email via /api/user/devices/verify and use the token you received in your calls.Please note: Some endpoints are subject to rate limiting. If there are too many requests, the server returns a 429-status restored.