1
0
Fork 0
mirror of synced 2024-09-11 23:26:09 +12:00
appwrite/app/sdks/php/docs/examples/teams/get-team.md
2019-05-09 09:54:42 +03:00

15 lines
No EOL
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]');