HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center

Add Tags

To add a tag to the upcoming report, you can use this method and pass to it any number of strings, each denoting a unique tag.

Instabug.appendTags(["Design", "Flow"])
[Instabug appendTags:@[@"Design", @"Flow"]];
Instabug.addTags("Tag one", "Tag two", "Tag three");
Instabug.addTags("Tag one", "Tag two", "Tag three");
Instabug.appendTags(["Tag 1", "Tag 2"]);
Instabug.appendTags(["Tag 1", "Tag 2"]);
//iOS
string[] tags = { "tag1", "tag2" };
NSArray nsArray = NSArray.FromObjects(tags);        
Instabug.AppendTags(nsArray);

//Android
Instabug.AddTags("Tag1","Tag2","Tag3");