def rename_project(
    name: str,
    new_name: str,
    api_key: Optional[str] = None,
) -> Dict[str, str]:

source code

Renames a project from name to new_name in your account.

Arguments:

  • name - Name of the project to rename.
  • new_name - A unique, user-defined name used when referencing the project.
  • api_key - If specified, unify API key to be used. Defaults to the value in the

Returns:

A message indicating whether the project was successfully renamed.