Hello, I am trying to get interactive buttons to work with home assistant node red. I was able to get the buttons to send to matter most self host fine but when I press the button. Nothing is sent back. I have made a webhook in HA and I am putting that url for the button but nothing ever goes back. I just need some that when I press the button in the message, it will activate a node and then from there I can control whatever I need to happen. Has anyone been able to do this?
{
"text": "This is a test message with buttons.",
"attachments": [
{
"text": "Choose an option:",
"actions": [
{
"id": "turn_off",
"name": "Turn Off",
"integration": {
"url": "http://192.168.2.10:8123/api/webhook/fsdfsdfsdfsdfsd",
"context": {
"action": "turn_off"
}
},
"type": "button",
"style": "danger"
},
{
"id": "leave_on",
"name": "Leave On",
"integration": {
"url": "http://192.168.2.10:8123/api/webhook/adadadadadadad",
"context": {
"action": "leave_on"
}
},
"type": "button",
"style": "primary"
}
]
}
]
}