Is the following a good rest design practice for listing all the subscriptions of a customer:
[BaseUrl]/subscriptions/[accountid]/payTV
[BaseUrl]/subscriptions/[accountid]/paywall
etc...
ORshould it rather be:
[BaseUrl]/subscriptions/payTV?[accountID]
[BaseUrl]/subscriptions/paywall?[accountID]
etc...
OR something else?