Hai Elena,
With the given code I am able to create a new board with a name.
url = "https://api.miro.com/v2/boards"payload = { "name": "{doc_name}", "description": "{doc_description}",}headers = { "accept": "application/json", "content-type": "application/json", "authorization": "Bearer {token}",}response = requests.post(url, json=payload, headers=headers)
So far so good, but where can I find the commands and or code to copy an existing board and to
change an existing document. I know that I have to use ‘put’ to copy the board, but I can’t find out more.
I have managed to assemble the above code from https://miroapp.github.io/api-clients/python/miro_api.html#MiroApi.api_client.
Can you please help me out? If I get this all done I have need for 7-10 more licenses for many years to come. So good business I’d say.