-
When netbox object is changed (e.g. virtual machine name updated), how to know the specific field (name) is change from netbox side to trigger webhook? Will conditional webhook works? My main goal is to change other system name using NetBox webhook and ansible. I wish to trigger webhook on name change but not triggered by other attribute like description, custom fields and etc to reduce noise. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The webhook payload contains both |
Beta Was this translation helpful? Give feedback.
The webhook payload contains both
"pre"
and"post"
sections. Your webhook receiver can compare these to decide whether action is required or not.