OnNewItem



Triggered when a new item, specified by ItemPath, is created.



Syntax:

Procedure: OnNewItem(ItemPath: String);


API Call:

PlanSwift and FreshDesk Code:

Procedure ItemCreated(ItemPath: String);
Begin
  // Process as needed here...
End;

PlanSwift.OnNewItem := ItemCreated;
Coming soon
public class PlanswiftApi
{
    private PlanSwift Planswift { get; }
    public PlanSwiftApi()
    {
        Planswift = new PlanSwift();
    }
}
Coming soon



Coming soon
Coming soon