Set HTTP Binary Sensor from node red

Hi,
I have a script on a machine that sets and HTTP Binary sensor state to on utilizing the below curl command when there is an event triggered on the PC. In the script I also have delay written in to send and updated HTTP POST to turn the sensor off. Is there a way that I can set the HTTP Binary sensor to off from with in node red utilizing a call service node or another type of node instead of depending on the script to keep running to send the off status?

curl -X POST -H "x-ha-access: MY PASSWORD"  -H "Content-Type: application/json" -d '{"state": "off", "attributes": {"friendly_name": "Radio"}}' http://localhost:8123/api/states/binary_sensor.fire_page