Sample code for 30+ languages & platforms
Rust

Microsoft Teams - Create Team (minimal request)

See more Microsoft Teams Examples

The following is an example of a minimal request to create a Team. By omitting other properties, the client is implicitly taking defaults from the pre-defined template represented by template.

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();

// To create a Microsoft Team, we want to send an HTTP request like the following:

// POST https://graph.microsoft.com/v1.0/teams
// Content-Type: application/json
// 
// {
//   "template@odata.bind": "https://graph.microsoft.com/v1.0/teamsTemplates('standard')",
//   "displayName": "My Sample Team",
//   "description": "My Sample Team’s Description"
// }

let json = chilkat::JsonObject::new();
let _ = json.update_string("\"template@odata.bind\"", "https://graph.microsoft.com/v1.0/teamsTemplates('standard')");
let _ = json.update_string("displayName", "My Sample Team");
let _ = json.update_string("description", "My Sample Team’s Description");

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

let resp = chilkat::HttpResponse::new();
if http.http_json("POST", "https://graph.microsoft.com/v1.0/teams", &json, "application/json", &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

// A successful response is indicated by a 202 response status code and an empty response body.
println!("Response Status Code: {}", resp.status_code());
println!("Response Body:");
println!("{}", resp.body_str());

if resp.status_code() >= 400 {
    println!("Response Header:");
    println!("{}", resp.header());
    println!("Failed.");
}