appwrite/docs/examples/1.5.x/client-react-native/examples/teams/update-name.md
2025-04-22 17:02:33 +04:00

358 B

import { Client, Teams } from "react-native-appwrite";

const client = new Client() .setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint .setProject('<YOUR_PROJECT_ID>'); // Your project ID

const teams = new Teams(client);

const result = await teams.updateName( '<TEAM_ID>', // teamId '' // name );

console.log(result);