To rename a dashboard, you can use the following mutation:
mutation EditDashboard { editDashboard( input: { id: "dashboard-id", title: "New Dashboard Name" } ) { id } }
Clone Dashboard
How to clone a dashboard using the Blue API.
Python
Blue has a Python library that can be used to interact with the Blue API.
Help