How can you filter contacts by ID in a GET request?
Using a query parameter: /contacts?id=123
/contacts?id=123
Neither a nor b is correct
Using a path variable: /contacts/123
/contacts/123
Both a and b are correct