Rust
Rust
OneNote - Delete Page
See more OneNote Examples
Deletes a OneNote page.Chilkat Rust Downloads
// 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("page_id", "0-5c32e6bbbe5f4fc18240e2ba96fae55f!34-3A33FCEB9B74CC15!20350");
let resp = chilkat::HttpResponse::new();
if http.http_no_body("DELETE", "https://graph.microsoft.com/v1.0/me/onenote/pages/{$page_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());