Hi all,
We have a requirement to post data from community site to webhook through automation. we tried using $.telligent.evolution.post but it's not working. Can anyone guide me?
Hi all,
We have a requirement to post data from community site to webhook through automation. we tried using $.telligent.evolution.post but it's not working. Can anyone guide me?
I think the telligent.evolution.post posts to a wrapper for internal AJAX requests that honor accessing user permissions. Maybe try the $core_v2_http.Post method:
#set($httpResponseResponse = $core_v2_http.Post($url, "%{ BypassUrlFiltering = $bypassUrlFilteringArg, Data = $dataArg, Headers = $headersArg, IsCacheable = $isCacheableArg, Query = $queryArg, TimeoutSeconds = $timeoutSecondsArg, VaryCacheByUser = $varyCacheByUserArg }"))
I think the telligent.evolution.post posts to a wrapper for internal AJAX requests that honor accessing user permissions. Maybe try the $core_v2_http.Post method:
#set($httpResponseResponse = $core_v2_http.Post($url, "%{ BypassUrlFiltering = $bypassUrlFilteringArg, Data = $dataArg, Headers = $headersArg, IsCacheable = $isCacheableArg, Query = $queryArg, TimeoutSeconds = $timeoutSecondsArg, VaryCacheByUser = $varyCacheByUserArg }"))