POST
/
events
/
search
curl --request POST \
  --url https://api.withorb.com/v1/events/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "event_ids": [
    "<string>"
  ],
  "timeframe_start": "2023-11-07T05:31:56Z",
  "timeframe_end": "2023-11-07T05:31:56Z"
}'
{
  "data": [
    {
      "id": "<string>",
      "customer_id": "<string>",
      "external_customer_id": "<string>",
      "event_name": "<string>",
      "properties": {},
      "timestamp": "2020-12-09T16:09:53Z",
      "deprecated": true
    }
  ]
}

Authorizations

Authorization
string
header
required

API Keys can be issued in the Orb's web application.

Body

application/json

Response

200
application/json
OK

The response is of type object.