deleteVaultSlot()

Deletes the user vault slot with the given ID.

This function produces an error if deletion fails or the slot cannot be found.

Syntax

portalLib.deleteVaultSlot(
  slotID STRING in)
slotId
A String value that contains the ID of the vault slot to be deleted.

Example

Id String = "abc_SLOT";
deleteVaultSlot(id);

Feedback