> ## Documentation Index
> Fetch the complete documentation index at: https://cometchat-22654f5b-feature-react-native-sdk-quotedmessage-a.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Transfer Group Ownership

*In other words, as a logged-in user, how do I transfer the ownership of any group if I am the owner of the group?*

In order to transfer the ownership of any group, the first condition is that you must be the owner of the group. In case you are the owner of the group, you can use the `transferGroupOwnership()` method provided by the `CometChat` class.

This will be helpful as the owner is not allowed to leave the group. In case, you as the owner would like to leave the group, you will have to use this method and transfer your ownership first to any other member of the group and only then you will be allowed to leave the group.

<Tabs>
  <Tab title="Transfer Ownership">
    ```javascript theme={null}
    let GUID = "GUID";
    let UID = "UID";
    CometChat.transferGroupOwnership(GUID, UID).then(
      () => {
          console.log("Successfully transferred ownership of the group.");
      }, error => {
          console.log("Could not transfer ownership of the group: ", error);
      }
    )
    ```
  </Tab>

  <Tab title="TypeScript">
    ```typescript theme={null}
    let GUID: string = "GUID";
    let UID: string = "UID";
    CometChat.transferGroupOwnership(GUID, UID).then(
      (ownershipTransferred: string) => {
          console.log("Successfully transferred ownership of the group.");
      }, error => {
          console.log("Could not transfer ownership of the group: ", error);
      }
    );
    ```
  </Tab>
</Tabs>
