A general question of mine who working on API endpoints as backend system.
I wonder what if all endpoint methods are POST, and when it is better to use GET?
From this discussion
Use GET for safe and idempotent requests
Use POST for neither safe nor idempotent requests
So I can say that it's fine to go all for POST method.