Note: Secure pause is only available for ACD calls and callbacks.

A secure pause temporarily stops recording to exclude sensitive information, such as an entry of a credit card number. A secure pause involves two actions.

  • [Feature].Secure Pause pauses recording of the conversation.
  • [Feature].End Secure Pause resumes recording.

Instead of playing silence during non-recorded segments, the recording plays a beep to indicate omitted segments.

Example: Use a check box to turn secure pause on and off

In this example, you create a custom action that starts or ends a secure pause when the agent selects or clears a check box. You could also use separate buttons or other components to control secure pause in scripts.

  1. Enable either the Inbound or Outbound script features. This step gives you access the Secure Pause and End Secure Pause actions for the feature that you enable.
  2. Create a True/False variable to track whether secure pause is on or off:
    • Set the default value to No (False).
    • In this example, the variable is named IsSecurePaused.IsSecurePaused variable
  3. Define a custom script action that turns secure pause on and off:
    1. In this example, the action is named Toggle Secure Pause.
    2. In the action, add an If/Else step.  
    3. Under If, set the following values:

      1. Left Hand Side: IsSecurePaused (the variable that you previously created).
      2. Operator: Equals
      3. Right Hand Side: True/False, set to True.
    4. Under Right Hand Side, click Add Step.

    5. From the list of actions, select Outbound.Secure Pause or Inbound.Secure Pause.
      The If part of your action is complete:

      ToggleSecurePause action If

    6. Next, add the Else part of the action to define what happens when IsSecurePaused is False:

    7. Under Else, click Add Step.
    8. Click If/Else.

    9. Under If, set the following values:

      1. Left Hand Side: IsSecurePaused (the variable that you previously created).
      2. Operator: Equals
      3. Right Hand Side: True/False, set to No.
    10. Under Right Hand Side, click Add Step.

    11. From the list of actions, select Outbound.End Secure Pause or Inbound.End Secure Pause.
      The Else part of your action is complete:ToggleSecurePause action Else

    12. Click Save.
  4. Attach the action to a check box:
    1. Add a check box component to the page and set its Text property to Secure Pause.
    2. Set the Value of the check box to the IsSecurePaused variable that you created earlier.
      This step binds the control to the variable. When an agent selects the box, the value of the variable is True, and when an agent clears the box, the value is False.
    3. Under Advanced, set the Change Action of the check box to the Toggle Secure Pause action that you created earlier.Secure Pause  Checkbox
  5. To test your work, click Preview Script.

    When you check the box, the preview displays Would have begun secure pause. When you clear the box, the preview displays Would have ended secure pause. These messages indicate that the control is working properly.

  6. Click Preview Script again to return to edit mode.

  7. On the Script menu, click Save.