# BOT_GROUP_INVITE

Commands bot to invite a resident to a group.

## Variables

The following table shows input values (you send them with the API call) and returned output values.

| **Variable** | **Description** |
|----------|-------------|
| `str`    | UUID of the group and role in the format: `"groupUUID\nroleUUID"`. |
| `id`     | UUID of the resident to invite. |

## Example

```csharp
// Invites specified resident to the Everyone role
llMessageLinked(LINK_SET, BOT_GROUP_INVITE, "uuid of group" + "\n" + NULL_KEY, "uuid of person you are inviting");
```