v1

latestOpenAPI 3.0.1Apache 2.02026-07-17111176225.7 KB
System

list feeds operations and information

Return a list of feed and their groups along with update and record count information. This data reflects the state of the policy engine, not the upstream feed service itself.

get/system/feeds

Response

success

namestring

name of the feed

created_atstring date-time

Date the metadata record was created in engine (first seen on source)

updated_atstring date-time

Date the metadata was last updated

last_full_syncstring date-time

Example response

[
  {
    "last_full_sync": "2000-01-23T04:56:07.000+00:00",
    "updated_at": "2000-01-23T04:56:07.000+00:00",
    "name": "name",
    "created_at": "2000-01-23T04:56:07.000+00:00",
    "groups": [
      {
        "record_count": 0,
        "last_sync": "2000-01-23T04:56:07.000+00:00",
        "name": "name",
        "created_at": "2000-01-23T04:56:07.000+00:00"
      },
      {
        "record_count": 0,
        "last_sync": "2000-01-23T04:56:07.000+00:00",
        "name": "name",
        "created_at": "2000-01-23T04:56:07.000+00:00"
      }
    ]
  }
]