When using a hook trigger is there any way to resubscribe to the previously subscribed webhook when a user disables and the enables a Zap? My API that I’m integrating with keeps logs of the webhook requests and I’m trying to avoid deleting it so I can keep the same chain of logs. Is there a way to retain the ID of the webhook I’m unsubscribing from to use in the subscribe function? Or some way to get a unique Zap ID to persist with the created webhook so I can query for it later? I see there is `bundle.meta.zap` but it’s marked deprecated so I’m hesitant to use it.
The flow I want to achieve is: new Zap => create new webhook “a” => Zap disabled => deactivate webhook “a” => Zap enabled => reactivate webhook “a”