Independentsoft
Professional software libraries for developers
Home
Purchase
Support
Company
Contact
JGraph
>
Tutorial
> Delete team
The following example shows you how to delete a Microsoft Teams team.
import com.independentsoft.graph.GraphClient; import com.independentsoft.graph.GraphException; public class Sample { public static void main(String[] args) { try { GraphClient client = new GraphClient(); client.setClientId("63333333-209e-454e-b7bd-55a4d201270f"); client.setTenant("independentsoft.onmicrosoft.com"); client.setUsername("info@independentsoft.onmicrosoft.com"); client.setPassword("password"); client.deleteTeam("team-id-123"); System.out.println("Team deleted."); } catch (GraphException e) { System.out.println("Error: " + e.getCode()); System.out.println("Message: " + e.getMessage()); e.printStackTrace(); } } }
Need help? Ask our developers:
Name*
Email*
Message*