Implementing idempotency in .NET Core can be accomplished with a filter, which I will cover at a high level.
Putting it simply, idempotency is the concept of executing an operation multiple times and getting the same result back, given the same input parameters for each request. In our case, we will be setting up idempotency for an API endpoint.
Continue reading