API Documentation

GET /api/folder
Returns the base folder concatenated with the current year and month

Query Parameters:

  • baseFolder (optional): The base folder to use

Headers:

  • X-API-KEY: API Key to use.

Example Response:

{
  "folder": "baseFolder/2024/10",
  "folderParts": [
    { "folderPart": "baseFolder" },
    { "folderPart": "2024" },
    { "folderPart": "10" }
  ]
}
Try it out

Please sign in to test the API.

GET /api/key
Returns the API key, needed for Zapier integration

Headers:

  • Authorization: Bearer token for authentication

Example Response:

{
  "apiKey": "1234ABCD"
}
Try it out

Please sign in to test the API.

DELETE /api/key
Delete the API key. This will invalidate the current API key and break any integration that uses it.

Headers:

  • Authorization: Bearer token for authentication

Example Response:

{
  "message": "API key deleted"
}
Try it out

Please sign in to test the API.