pub async fn create_code_session(
base_url: &str,
access_token: &str,
title: &str,
timeout_ms: u64,
tags: Option<Vec<String>>,
) -> Option<String>Expand description
Create a new code session via POST /v1/code/sessions
ยงArguments
base_url- The API base URLaccess_token- OAuth access tokentitle- Session titletimeout_ms- Request timeout in millisecondstags- Optional tags for the session
Returns the session ID on success, or None if creation fails.