#![allow(unused_imports)] use sendgrid2::SendgridClient; use sendgrid2::model::*; #[tokio::main] async fn main() { let client = SendgridClient::from_env(); let token = "your token"; let response = client .post_v3_teammates_pending_token_resend(token) .on_behalf_of("your on behalf of") .send() .await .unwrap(); println!("{:#?}", response); }