API를 통해 그룹의 시청 목록을 업데이트하려 할 때 오류 발생 (PUT groups/{id}.json)

정말 감사합니다, @zogstrip! 이제 잘 작동합니다! :smiley:

(참고로, "update_existing_users”=True는 JSON 전송 시 “group” 항목과 나란히(외부에) 위치해야 합니다. 여기서는 Python 문법으로 표시되어 있으므로, True가 문자열 “true”로 변환됩니다):

            jsonData={
                "group": {
                    "name": f"{groupName}",
                    "watching_category_ids": newWatchList,
                },
                "update_existing_users": True,
            },