mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 00:49:02 +00:00
15 lines
197 B
Markdown
15 lines
197 B
Markdown
|
|
<?php
|
||
|
|
|
||
|
|
use Appwrite\Client;
|
||
|
|
use Appwrite\Services\Teams;
|
||
|
|
|
||
|
|
$client = new Client();
|
||
|
|
|
||
|
|
$client
|
||
|
|
setProject('')
|
||
|
|
setKey('')
|
||
|
|
;
|
||
|
|
|
||
|
|
$teams = new Teams($client);
|
||
|
|
|
||
|
|
$result = $teams->getTeam('[TEAM_ID]');
|