This is a pretty simple question.
Common with RESTful
List all accounts
.... /accounts
Create individual account
..../accounts
These are unique because List uses the GET verb while Create uses POST.
Similar,
Show individual account detail
..../accounts/{id}
I'm getting conflicts when defining any two of these.