ActionscopyToClipboardVersion: 4.62On this pagecopyToClipboard Copies the specified text to the clipboard of the user's device. Field Configurations KeyTypeDescriptionDefault Value"params" (required)Objectundefinednull Parameters KeyTypeDescriptionDefault Value"async"BooleanSpecifies whether the action should perform asynchronously.null"text" (required)StringThe text to copy.null Inherited From Base ActionBase ActionField ConfigurationsKeyTypeDescriptionDefault Value"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null"leadingDelimiter"StringThe leading mustache delimiter to use.null"params"Object,ArrayObject containing the properties of the action.null"trailingDelimiter"StringThe trailing mustache delimiter to use.null"type"StringType name of the action.null Examples Example 1: Copy a text to the clipboard Show ExampleHide ExampleCopyToClipboard action that copys the user id to the device's clipboard.{ "type": "copyToClipboard", "leadingDelimiter": "{%", "trailingDelimiter": "%}", "dynamicParams": { "uid": { "context": "user", "field": "uid" } }, "params": { "text": "{%uid%}" }}