Tags
MBAudience.setTag(tag: 'TAG', value: 'VALUE');MBAudience.removeTag('TAG');Last updated
You can set tags to assign to a user/device (e.g. if user has done an action set a tag), so you can target those users later:
To set a tag:
MBAudience.setTag(tag: 'TAG', value: 'VALUE');To remove it:
MBAudience.removeTag('TAG');Last updated