POST
/
analytics
/
ingest
curl --request POST \
  --url https://api.diversion.dev/v0/analytics/ingest \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "events": [
    {
      "event": "<string>",
      "source": "<string>",
      "time": "2023-11-07T05:31:56Z",
      "properties": {}
    }
  ]
}'

Authorizations

Authorization
string
header
required

This API uses OAuth 2 with the implicit grant flow

Body

application/json

A list of analytics events

events
object[]
required