Do not track writes in the same endpoint contract.
Section: Idempotency patterns
Avoid mutations on GET
text
text
Avoid: GET /posts/123/mark-readExplanation
A GET endpoint should not change business state. Use a dedicated write route if you need to record events or acknowledgements.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Idempotency patterns