POST
/
v1
/
ingest
Ingest events
curl --request POST \
  --url https://api.metronome.com/v1/ingest \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "transaction_id": "2021-01-01T00:00:00Z_cluster42",
    "customer_id": "team@example.com",
    "event_type": "heartbeat",
    "timestamp": "2021-01-01T00:00:00Z",
    "properties": {
      "cluster_id": "42",
      "cpu_seconds": 60,
      "region": "Europe"
    }
  }
]'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json · object[]

The body is of type object[].

Response

200

Success