# Managing group invites

Base groups “invite” members by trusting their personal avatars; members must also trust the group avatar to mint group tokens as collateral.

### Invite a Member (Trust Them)

```ts
const trustReceipt = await groupAvatar.trust.add('0xMemberAvatar');
console.log('Invitation sent (trust added):', trustReceipt.hash);
```

* Trusting a member signals that the group will accept their personal token as collateral.
* Safe runners can batch invites: `groupAvatar.trust.add(['0xA', '0xB']);`.

### Member Accepts (Trust the Group)

```ts
const memberAvatar = await sdk.getAvatar('0xMemberAvatar');
await memberAvatar.trust.add(groupAvatar.address);
```

* Members must trust the group avatar before they can mint group tokens.

### Revoke a Member (Untrust Them)

```ts
const revokeReceipt = await groupAvatar.trust.remove('0xMemberAvatar');
console.log('Revoked member (trust removed):', revokeReceipt.hash);
```

* Batching works the same way: `groupAvatar.trust.remove(['0xA', '0xB']);`.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aboutcircles.com/circles-sdk/circles-avatars/group-avatars/managing-group-invites.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
