Rest API - Advanced Patterns
Given this composite operation request:
{
"operations": [
{"method": "POST", "path": "/users", "body": {"name": "Alice"}},
{"method": "POST", "path": "/orders", "body": {"userId": "${1.id}", "item": "Book"}}
]
}
What is the expected behavior?