Skip to main content
POST
/
events
/
search
JavaScript SDK
const events = await client.events.search({
  filter: {
    assetIds: [1, 2]
  },
  search: {
    description: 'Pump'
  }
});
{
  "items": [
    {
      "id": 4503599627370496,
      "lastUpdatedTime": 1730204346000,
      "createdTime": 1730204346000,
      "externalId": "my.known.id",
      "dataSetId": 4503599627370496,
      "startTime": 1730204346000,
      "endTime": 1730204346000,
      "type": "<string>",
      "subtype": "<string>",
      "description": "<string>",
      "metadata": {},
      "assetIds": [
        4503599627370496
      ],
      "source": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Body

application/json

Filter on events filter with exact match

filter
object

Filter on events filter with exact match

limit
integer<int32>
default:100

<- Limits the maximum number of results to be returned by single request. Request may contain less results than request limit.

Required range: 1 <= x <= 1000

Response

Paged response with list of events

items
object[]
required
Last modified on April 23, 2026