Authorization: Bearer ********************curl --location --request PATCH 'https://v1.dev.bukalombok.com/v1/superadmin/broadcasts/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "Judul Baru",
"message_content": "Isi pesan baru",
"roles": ["vendor", "delivery_courier"],
"user_ids": ["uuid-user-3"],
"broadcast_type": ["notification"],
"scheduled_at": "2025-08-16T10:00:00Z"
}'{
"meta": {
"success": true,
"status": 200,
"message": "Broadcast message updated successfully"
},
"data": {
"broadcast_id": "uuid-broadcast-123456",
"title": "Judul Baru",
"roles": ["vendor", "delivery_courier"],
"user_ids": ["uuid-user-3"],
"broadcast_type": ["notification"],
"scheduled_at": "2025-08-16T10:00:00Z",
"updated_at": "2025-08-13T15:00:00Z"
}
}