curl --request POST \
--url http://localhost:3004/v1/events/{projectId}/publish/batch \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
[
{
"eventType": "<string>",
"payload": {},
"targets": [
{
"targetId": "<string>"
}
],
"previous": {},
"meta": {
"priority": "normal",
"maxRetries": 3
}
}
]
'