One last question for now:
What is the code for updating an items it’s content? I tried it with:
url = f'https://api.miro.com/v2/boards/{board_id}/items/{item_id}'
data = {"data": {"content": "<p>123</p>"}}headers = { "accept": "application/json", "authorization": f"Bearer {access_token}",}response = requests.patch(url, json=data, headers=headers)
Can you help me? And where can I find all the possibilities?