pub async fn create_note(
configuration: &Configuration,
create_note_request: CreateNoteRequest,
account_id: Option<&str>,
provider: Option<&str>,
x_workspace_id: Option<&str>,
) -> Result<Note, Error<CreateNoteError>>Expand description
Creates a new note under the target account. The target is resolved in this order: accountId field on the body → ?accountId= query → provider field on the body → ?provider= query → the caller’s single connected account (errors with ambiguous_account if more than one is connected and no selector is supplied).