I am trying to enable a webhook endpoint that is currently disabled with one of these:
(byebug) ChargeBee::WebhookEndpoint.update(id, url: new_uri.to_s, disabled: false)
#<ChargeBee::Result:0x000000010e945408 @response={:webhook_endpoint=>{:api_version=>"v2", :id=>"REDACTED", :name=>"REDACTED", :disabled=>true, …}, @http_status_code=200>
(byebug) ChargeBee::WebhookEndpoint.update(id, { url: new_uri.to_s, disabled: false })
#<ChargeBee::Result:0x000000010efb8a88 @response={:webhook_endpoint=>{:api_version=>"v2", :id=>"REDACTED", :name=>"REDACTED", :disabled=>true, …}, @http_status_code=200>
In effect, the parameter is ignored. Not sure if it's of any relevance, the url is the same as before.
Hello!
I am trying to enable a webhook endpoint that is currently disabled with one of these:
Expected behavior
disabled: falseActual behavior
disabled: trueIn effect, the parameter is ignored. Not sure if it's of any relevance, the
urlis the same as before.