v51

OpenAPI 3.0.0EUPLraw.githubusercontent.com2026-08-01133591927.1 KB
North Connectors

Search files in cache, error and archive folders

Searches for files in the north connector cache

get/api/north/{northId}/cache/search

Path parameters

northIdstring required

Query parameters

nameContainsstring required
startstring required
endstring required
maxNumberOfFilesReturnednumber double required

Response

The cache search result

searchDatestring required

Represents an instant in time as an ISO 8601 string.

Example response

{
  "searchDate": "2023-10-31T12:34:56.789Z",
  "metrics": {
    "lastRunDuration": 1000,
    "lastRunStart": "2023-10-31T12:34:56.789Z",
    "lastConnection": "2023-10-31T12:34:56.789Z"
  },
  "error": [
    {
      "metadata": {
        "contentFile": "/path/to/content.json",
        "contentSize": 1024,
        "numberOfElement": 10,
        "createdAt": "2023-10-31T12:34:56.789Z",
        "contentType": "time-values"
      }
    }
  ],
  "archive": [
    {
      "metadata": {
        "contentFile": "/path/to/content.json",
        "contentSize": 1024,
        "numberOfElement": 10,
        "createdAt": "2023-10-31T12:34:56.789Z",
        "contentType": "time-values"
      }
    }
  ],
  "cache": [
    {
      "metadata": {
        "contentFile": "/path/to/content.json",
        "contentSize": 1024,
        "numberOfElement": 10,
        "createdAt": "2023-10-31T12:34:56.789Z",
        "contentType": "time-values"
      }
    }
  ]
}