Rest API - Advanced Patterns
Consider this composite operation request:
What is the expected outcome if both operations succeed?
{"operations": [{"method": "PUT", "path": "/accounts/789", "body": {"balance": 500}}, {"method": "POST", "path": "/transactions", "body": {"accountId": 789, "amount": -100}}]}What is the expected outcome if both operations succeed?
