Service broadlink send packat problem

I have a broadlink rm min 3 to send ir codes. Works fine configured with scripts and switches.

But what I cant figure out is how to send them using the call service feature in HA gui.

Switch looks like this:
https://pastebin.com/dBXSeY42

From the service page I tried
Service: switch.broadlink_send_packet_192_168_1_76
Json code:
{“packet”: [
“JgBwAAABKZQUERQ3ExITNxM3FDcTNxMSEzcUERQ2FBEUERQRFBETNxQ3ExITNxM3FDcTEhMRFBEWDxQ3FRATERQRFDcTNxM3FAAFIgABKkkUAAxhAAEpSRQADGEAASlJFAAMYQABKUoVAAxfAAEpShMADQUAAAAAAAAAAA==”
]}

Nothing happens.

Try removing the square brackets around your quotes that should fix your problem.

Tried it without any success. :frowning:

Try replacing the quotes around packet. When I paste your service data into the developer tools service pane. I get an error of invalid json and managed to resolve it by replacing the quotes around packet. I have pasted below the service data which seemed to work for me. Hope this helps.

{"packet":"JgBwAAABKZQUERQ3ExITNxM3FDcTNxMSEzcUERQ2FBEUERQRFBETNxQ3ExITNxM3FDcTEhMRFBEWDxQ3FRATERQRFDcTNxM3FAAFIgABKkkUAAxhAAEpSRQADGEAASlJFAAMYQABKUoVAAxfAAEpShMADQUAAAAAAAAAAA=="}

Thanks, worked for me now. Strange the quots wasnt working.