Unit Group Name Change

This event is fired when a unit group's name is modified.

EVENT_UNIT_GROUP_CHANGE_NAME POST

{
    "key": "YOUR_API_KEY", // Authenticate legitimate event traffic
    "type": "EVENT_UNIT_GROUP_CHANGE_NAME",
    "data": {
        "identIds": [1, 2, 3], // Unit Identifier IDs
        "oldName": "Some Old Group",
        "newName": "My New Group Name"
    }
}

Last updated