Rest API - Advanced Patterns
Consider this client code sending a POST request with an idempotency key:
headers = {"Idempotency-Key": "abc123"}
response1 = send_post(data, headers)
response2 = send_post(data, headers)
If the server implements idempotency correctly, what will be true about response1 and response2?