curl --request POST \
--url https://api.example.com/v1/sdk/meter-events/bulk \
--header 'Content-Type: application/json' \
--data '
{
"events": [
{
"customerRef": "<string>",
"meterName": "<string>",
"productRef": "<string>",
"properties": {},
"timestamp": "<string>",
"value": 123
}
]
}
'{
"inserted": 50,
"success": true
}Persists each event with recordUsage (same shape as single POST), after shared meter/customer checks.
curl --request POST \
--url https://api.example.com/v1/sdk/meter-events/bulk \
--header 'Content-Type: application/json' \
--data '
{
"events": [
{
"customerRef": "<string>",
"meterName": "<string>",
"productRef": "<string>",
"properties": {},
"timestamp": "<string>",
"value": 123
}
]
}
'{
"inserted": 50,
"success": true
}