In a RAML specification for a banking application, accounts, account_id, and transactions are identified as resources. What resource/method pair retrieves transactions for a specific account_id?
- GET /accounts/{account_id}/transactions
- POST/accounts/{account_id}
- GET/accounts/account_id
- PUT/accounts/{account_id}/transactions/{transaction_id}
Reveal Solution Next Question