I have already configure webhook url in chargify. This url is for webapi.
So i'm handling all events in webapi. But I want to know that how can we get the request parameter from chargify. If anyone have an example, would you please give me.
Below is the request from the chargify webhook's one event
you can get the below link for the webhook sending request for the events. https://docs.chargify.com/webhooks#signup-success-payload
Please help me on this.
Thanks in Advance.
Since it's submitted to the webhook url as form-parameters, so in MVC your signature would look similar to the following:
The parameter
signature_hmac_sha_256is included in the query string, so it's passed here.You could then run different logic by using the
event: