How WebHook Data Accept at other server?

how to accept data at other server which sent using webhook???

I create one method which is call using web hook on_submit event and it is call on_submit event but i don’t know how to accept data on other server?

1 Like

you can make 2 level actions :
Example :
Server 1 : Contain frappe
Server 2 : Other Server

-S1 on submit call webhook to function in S2
-S2 : on hit its call a Whitelisted function in S1 as post call
-You can create or use frappe crs token for validation

check :

and RPC section in
https://frappe.io/docs/user/en/guides/integration/rest_api

best

1 Like