curl --location --request POST 'https://api.lootlocker.io/admin/broadcasts/v1/organisation/' \
--header 'x-auth-token: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Halloween Event 2025",
"games": [101, 202, 303],
"localizations": [
{
"language": "en",
"headline": "Spooky Season is Here!",
"image_url": "https://cdn.example.com/images/halloween-banner-en.png",
"action": "play_now",
"body": "Join the Halloween event and win exclusive rewards!",
"extras": [
{ "key": "theme", "value": "halloween" },
{ "key": "reward_multiplier", "value": "2x" }
]
},
{
"language": "fr",
"headline": "La saison effrayante est arrivée !",
"image_url": "https://cdn.example.com/images/halloween-banner-fr.png",
"action": "jouer_maintenant",
"body": "Participez à l'\''événement d'\''Halloween et gagnez des récompenses exclusives !",
"extras": [
{ "key": "theme", "value": "halloween" },
{ "key": "reward_multiplier", "value": "2x" }
]
}
],
"publication_settings": [
{
"start": "2025-10-20T09:00:00Z",
"end": "2025-11-05T23:59:59Z",
"tz": "UTC"
}
]
}'