Sample code for 30+ languages & platforms
Rust

Microsoft Teams - Delete a Team

See more Microsoft Teams Examples

Deletes a group.

When deleted, Microsoft 365 groups are moved to a temporary container and can be restored within 30 days. After that time, they are permanently deleted.

Chilkat Rust Downloads

Rust

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

let http = chilkat::Http::new();

// Adds the "Authorization: Bearer ACCESS_TOKEN" header.
http.set_auth_token("ACCESS_TOKEN");

let _ = http.set_url_var("team_id", "bc6ef2f4-d51e-4362-9a17-11ad3382b8ad");

let resp = chilkat::HttpResponse::new();
if http.http_no_body("DELETE", "https://graph.microsoft.com/v1.0/groups/{$team_id}", &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

// Success is a 204 response status code with an empty body.
println!("Response status code: {}", resp.status_code());
println!("Response body:");
println!("{}", resp.body_str());