Skip to content
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.

QuickActions Setup

SirBitesalot edited this page Jan 24, 2021 · 5 revisions

To get started creating your first QuickAction simply copy the "EmptySample" folder in the "QuickActions" folder and rename the copied folder to a name that represents your QuickAction. Note that your name should not be too generic if you want to share your QuickAction as it could lead to duplicated folder names for the users.

After copying and renaming of the folder navigate into the folder and open the "definition.json" file. You will see the following content:

{
  "DisplayName": "Put display name here",
  "Icon": null,
  "Description": "Put description here",
  "SuccessMessage": "Put message that will be displayed on success here",
  "Arguments": [
  ]
}

Replace the placeholders accordingly. Note that "Icon" and "Arguments" are unused right now and should not be changed.

After editing the "definition.json" file open the "script.js" file and add your code.

To get started on writing your actual code see Writing your first QuickAction