...
- Navigate to Plugin Store->Tool Manager and create a new Plugin
- Set the plugin type to Script Code and open the Editor
- Copy Code into the editor
- Press run
API
...
Calls
Delphi
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
// PlanSwift code:
var
Result : boolean;
begin
Result := PlanSwift.DeleteProperty('Item Path', 'Property Name');
end;
// FreshDesk code:
procedure TForm1.psDeleteProperty(Sender: TObject);
var
ps: IPlanSwift;
itm: IItem;
begin
//Create the Planswift Interface
ps := coplanswift.Create;
//Get the Selected Item
itm := ps.SelectedItem;
//Delete the Description on the selected Item
ps.DeleteProperty(itm.GUID,'Description');
//free planswift Interface
ps := nil;
end; |
C#
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
public class PlanswiftApi
{
private PlanSwift Planswift { get; }
public PlanSwiftApi()
{
Planswift = new PlanSwift();
}
} |
Code Block | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
Coming soon |
VB/VBA (OLE)
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
Coming soon |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
Coming soon |