Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • GET in response to a post is not only for forms but also useful for APIs so the clients get a light response; particularly useful for mobile clients wherein data usages apply. If the client wants the updated resource, they will intentionally make another request. Of course this means an extra trip. Both have dis/advantages. Commented Oct 5, 2018 at 17:06
  • The overhead for a single HTTP request is much higher than the payload, so that is not relevant in this case, though. Commented Oct 6, 2018 at 9:54
  • It is if the client does not make the subsequent GET and a response of 200 is good enough. Commented Oct 7, 2018 at 4:22