I have the following problem. Please suggest me the inputs.
I require the list of transactions which can be categorized as
a. Pending/Completed
b. For given account numbers
c. For given customer ids
d. For given categories (category A, Category B) and so on.
Any of these 4 above and all of these are optional.
I am thinking of putting the above 4 options as query param and have a url something like this http://localhost:8080/Transaction/?status=pending&customerid=3,4&category=catA
Is this a Good design for this requirement?
[EDIT] I do not know if it is good design to pass nouns as query parameters.