You can delete user variables or the values of some SIS-defined variables in an interceptor script block, the same way you can for a composition script block — by using the <delete>
element.
Deleting IN Signaling Parameters
If the values of any IN signaling parameters are changed in a |
Example
This example shows a composition that invokes a service, after deleting the orig
parameter from the Route header’s URI:
<script>
<invoke service="Prepay">
<service-input-interceptor>
<delete variable="${route.uri.param.orig}"/>
</service-input-interceptor>
</invoke>
</script>