Blink Integration: sequence item 0: expected str instance, Optional found

I have Home Assistant running on a docker. I have added Blink and can control the system (arm/disarm) from the Overview page. I cannot get automations or scripts to work with Blink.

Running the script below results in the error: “Failed to call service script/1625441910815. sequence item 0: expected str instance, Optional found”

alias: New Script
sequence:
  - service: alarm_control_panel.alarm_arm_away
mode: single

Can anyone help with the error above? Thanks.

Was able to solve by adding in the target entity_id.

alias: New Script
sequence:
  - service: alarm_control_panel.alarm_arm_away
    target:
      entity_id: alarm_control_panel.blink_*name*
mode: single