I made an insert request to the api in order to create a new livestream, my code:
request = youtube.liveStreams().insert( part="snippet,cdn,contentDetails,status", body={"contentDetails": {"isReusable": True },"cdn": {"frameRate": "60fps","ingestionType": "rtmp","resolution": "1080p" },"snippet": {"title": "test title","description": "test description" } })However, this isn't updating at https://studio.youtube.com/video/*************/livestreaming
How can I edit the preconfigured stream at that link?