v7

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-013764062.2 MB
Operational

[BETA] Get signals originated from a specific signal endpoint.

Enterprise feature

[BETA] This API is in beta state, which means it may change or be removed in the future.

Returns a list of signals originated from a specific signal endpoint, identified by its id.

get/api/admin/signal-endpoints/{signalEndpointId}/signals

Path parameters

signalEndpointIdstring required

Query parameters

limitstring
Example:50

The number of results to return in a page. By default it is set to 50.

offsetstring
Example:50

The number of results to skip when returning a page. By default it is set to 0.

Response

#/components/schemas/signalEndpointSignalsSchema

Example response

{
  "signalEndpointSignals": [
    {
      "id": 7,
      "payload": {
        "cpu": 92,
        "memory": 85
      },
      "createdAt": "2023-12-27T13:37:00+01:00",
      "source": "signal-endpoint",
      "sourceId": 1337,
      "tokenName": "signal-endpoint-token"
    }
  ]
}