Rest API - HTTP Status Codes
Analyze this REST API code snippet and determine the HTTP status code returned when the client's version does not match the server's resource version:
if client_version != server_version:
return {"error": "Conflict detected"}, 409
else:
save_changes()
return {"status": "Success"}, 200