Update a Translation Memory Unit using the tmTranslation ID

Hi all,

Please let me know if I should direct this question to a different forum but wanted to start my check here.

Is there any POST endpoint on the REST API for worldserver to update a Translation Memory entry if you only have its ID?

For example we execute the search:

https://WSurl/ws-api/v2/tms/search?query=text eq 'Hello' and source eq 'English (United States)' and target eq 'Japanese' and tm eq 'TM - Name'&token=<token>

and get back:

 "items": [
        {
            "score": 1.0,
            "lookup": {
                "locale": "en_US_English (United States)",
                "string": "Hello",
                "immutable": false,
                "normalizedString": "|Hello|"
            },
            "tmTranslation": {
                "id": 13445687,
                "source": {
                    "locale": "en_US_English (United States)",
                    "string": "Hello",
                    "immutable": false,
                    "normalizedString": "|Hello|"
                },
                "target": {
                    "locale": "ja_JP_Japanese",
                    "string": "こんばんは",
                    "immutable": false,
                    "normalizedString": "|こ|ん|ば|ん|は|"
                }
            }
        }],
Total: 1}
and we want to now update the translation for ID "13445687" from こんばんは to こんにちは -- I wanted to see if there was any API endpoint to do so as the only update command I've been able to find is the one for updating a segment with a tag number.
Thanks for any help!