I have been using the following configuration
notify:
# -------------------------------------------------------- Notify Alexa via Notify me
- name: notify_alexa
platform: rest
message_param_name: notification
resource: https://api.notifymyecho.com/v1/NotifyMe
data:
accessCode: !secret notify_me_accessCode
It worked fine until I upgraded to 2020.12.1 since when calling the service returns
Logger: homeassistant.components.websocket_api.http.connection
Source: components/rest/notify.py:200
Integration: Home Assistant WebSocket API ([documentation](https://www.home-assistant.io/integrations/websocket_api), [issues](https://github.com/home-assistant/home-assistant/issues?q=is%3Aissue+is%3Aopen+label%3A%22integration%3A+websocket_api%22))
First occurred: 16:28:39 (7 occurrences)
Last logged: 16:33:12
[547648138304] 'NoneType' object has no attribute 'update'
Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/components/websocket_api/commands.py", line 135, in handle_call_service await hass.services.async_call( File "/usr/src/homeassistant/homeassistant/core.py", line 1445, in async_call task.result() File "/usr/src/homeassistant/homeassistant/core.py", line 1480, in _execute_service await handler.job.target(service_call) File "/usr/src/homeassistant/homeassistant/components/script/__init__.py", line 215, in service_handler await script_entity.async_turn_on( File "/usr/src/homeassistant/homeassistant/components/script/__init__.py", line 320, in async_turn_on await coro File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 1026, in async_run await asyncio.shield(run.async_run()) File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 242, in async_run await self._async_step(log_exceptions=False) File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 250, in _async_step await getattr( File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 457, in _async_call_service_step await service_task File "/usr/src/homeassistant/homeassistant/core.py", line 1445, in async_call task.result() File "/usr/src/homeassistant/homeassistant/core.py", line 1480, in _execute_service await handler.job.target(service_call) File "/usr/src/homeassistant/homeassistant/components/notify/__init__.py", line 149, in _async_notify_message_service await self.async_send_message(**kwargs) File "/usr/src/homeassistant/homeassistant/components/notify/__init__.py", line 128, in async_send_message await self.hass.async_add_executor_job(partial(self.send_message, message, **kwargs)) # type: ignore File "/usr/local/lib/python3.8/concurrent/futures/thread.py", line 57, in run result = self.fn(*self.args, **self.kwargs) File "/usr/src/homeassistant/homeassistant/components/rest/notify.py", line 200, in send_message params=self._params.update(data), AttributeError: 'NoneType' object has no attribute 'update'
Please can someone tell me what I have missed.
Thanks