...
Here you can find all available interceptor Method Names.
How to Use Interceptor Methods
On the top level of the JS file, you can declare multiple interceptor methods.
...
Interceptor Method Parameters
...
api
: is a common parameter for all interceptor methods , InterceptorMethodAPI https://pricefx.atlassian.net/wiki/x/OACnRwE .
quoteAPI
: is only available in the Quoting module CLIC Method Interceptor API .
compensationPlanAPI
: is only available in the Sales Compensations module CLIC Method Interceptor API .
contractAPI
: is only available in the Agreements & Promotions module CLIC Method Interceptor API .
rebateAgreementAPI
: is only available in the Rebates module CLIC Method Interceptor API .
opportunityId
: is available in methods with action OpportunityAssign
.
...
In api
parameter, the most commonly used functions are:
crmManager
: InterceptorMethodAPI | crmManager : https://pricefx.atlassian.net/wiki/spaces/INTERC/pages/5497094200/Common+Interceptor+API#crmManager allows you to access CRM system, but it is only available inside CRM system.notify
: InterceptorMethodAPI | notify : https://pricefx.atlassian.net/wiki/spaces/INTERC/pages/5497094200/Common+Interceptor+API#notify is used for calling notification.navigate
: InterceptorMethodAPI | navigate : https://pricefx.atlassian.net/wiki/spaces/INTERC/pages/5497094200/Common+Interceptor+API#navigate with this function, you can navigate to other pages or even create new quote with selected type.
This is not all you can do with api
. Explore InterceptorMethodAPI Interceptor API and find more functions that you can call from api
.
...