I think for Pleroma BE I may go with eal's suggestion of making a dedicated unrepeat endpoint. Like the pre-existing /api/status/retweet/:id.json endpoint it will return the status to unrepeat.
GS does support unrepeating via the destroy endpoint but since that's also used for deleting notices, it's not going to be feasible in Pleroma where one can also repeat themselves (unlike GS) since there's an ambiguity in that case.
So for Pleroma BE, we use a dedicated unretweet endpoint while on GS we should use destroy but only if repeating user != original notice author.
Ok, I've decided to implement the actual unretweet endpoint from Twitter's actual API in pleroma!218 (merged). Doing it this way would probably not be GS compatible since it doesn't have that endpoint but it will work with self-repeats in Pleroma better than how GS does it.