Create and Update methods for Feedback
feedback = await client.api.create_feedback( step_id="<STEP_UUID>", value=1, comment="Hello world", )
Show properties
feedback = await client.api.update_feedback( id="<THREAD_UUID>", update_params={ "comment": "Hello world", }, )
Was this page helpful?