ARCAM FMJ Shell Command for IR Power On - GC100

I am using a GC-100 to send IR codes to my Arcam AVR450.

When I load the Global Cache https://www.globalcache.com/downloads.html utility, I can connect to the Global Cache and send this command:

sendir,4:1,1,36000,2,1,64,32,32,64,64,32,32,32,32,32,32,64,32,32,32,32,64,64,32,32,32,2487

which works as expected and powers on the Arcam receiver.

I am trying to create a Shell Command but first started with a terminal command:

 echo -e 'sendir,4:1,1,36000,3,1,64,32,32,64,64,32,32,32,32,32,32,64,32,32,32,32,64,64,32,32,32,2487' | nc 10.0.0.24 4998

and then convert it to the Shell Command

shell_command:
  arcam_on: echo -e 'sendir,4:1,1,36000,3,1,64,32,32,64,64,32,32,32,32,32,32,64,32,32,32,32,64,64,32,32,32,2487' | nc 10.0.0.24 4998

Unfortunately the Arcam does not respond to the commands. I am sure this is because I am not a good programmer and would appreciate any help to debug the situation.