There's a subtle difference between Yesyes, you can use POST for updates and yes, it's ok using POST for updates.
Indeed (technically)Technically, you can, but it's not ok; unless you are dealingdeal with some rare constraint. Orconstraints or you are intendedly implementing an RPC-like APIs (I think this is not your case) web interface.
The reason why it'sWhy is not ok can be understood reading? The reason is in the other 2two answers and the comments below the question. It's contrary to the HTTP semantics and it'sweird. It's confusing.
Confusing for who? For whom? On one side, for whoever is familiar with the HTTP verbs and is meanthave to work with your API. Especially confusing for HTTP Clients that were built On the other hand, Http clients are implemented to work in a very specific way. MostOk, your idea will work on most of the time, it's irrelevant for theseHttp clients but not for those developers who have to use the client andout there, but you will be making someone else job harder when all too sudden, note that it doesn't behave the client stops working as expected.
Allow me to share a reflection. Often, we have what I call "happy ideas""happy ideas". Happy ideasHappy ideas make a lot of sense to us. We understand them, they are something obvious, brilliant, they work, they are ok.
The thing is if we reach them upon false premises or rationales, lack of knowledge or absolute ignorance.
If you are familiar with the HTTP semantics and you don't want your API not to cause asome funny WTF time, then you won't use POST for updates. Because it's weird and it makes hard someone's else job. It bears an unnecessary cognitive burden.
Could this way bring some issues that I don't see at the moment?
Hard to say. It will depend on how the happy idea is complicating things. If you screw withhave to make this question to strangers on the semanticsinternet then it's not a good idea. Learn HTTP first, get familiar with it. Then twist it safely as you deem it necessary.