List Signals by Entity (Cursor)
This endpoint allows you to list signals for an entity using cursor pagination and optional filters. Scoped to the authenticated business.
GET {{baseurl}}/v2/api/signals/entity/:entityId/cursor
Headers
token*
String
API secret token
Parameter
entityId*
String
Entity unique identifier
limit
Number
Page size
Default value: 20
startAfter
String
Document id cursor for the next page
endingBefore
String
Document id cursor for the previous page
deviceId
String
Filter by device id
filterByAnomaly
Boolean
When true, apply the anomaly filter
anomaly
Boolean
Anomaly value when filterByAnomaly is true
deviceType
String
Comma-separated device types
os
String
Comma-separated OS names
startDate
String
Date-only YYYY-MM-DD (inclusive)
endDate
String
Date-only YYYY-MM-DD (inclusive)
{
"success": true,
"statusCode": 200,
"message": "Signals retrieved successfully!",
"data": {
"docs": [],
"nextCursor": "abc123",
"prevCursor": null,
"hasNextPage": true,
"hasPrevPage": false,
"totalDocs": 50
},
"links": []
}HTTP/1.1 404 NotFound
{
"success": false,
"statusCode": 404,
"message": "You have attempted to get a resource that does not exist.",
"name": "ResourceNotFoundError",
"data": {}
}Last updated
Was this helpful?
