diff --git a/frameioclient/services/comments.py b/frameioclient/services/comments.py index 5d797183..e4d5c7fd 100644 --- a/frameioclient/services/comments.py +++ b/frameioclient/services/comments.py @@ -91,7 +91,7 @@ def update( kwargs = {"text": text, "annotation": annotation, "timestamp": timestamp} endpoint = "/comments/{}".format(comment_id) - return self.client._api_call("post", endpoint, payload=kwargs) + return self.client._api_call("put", endpoint, payload=kwargs) @ApiReference(operation="#deleteComment") def delete(self, comment_id: Union[str, UUID]):