I have an endpoint that takes a list of email address (could be a very long list) and finds users with that email. What HTTP verb is best for this?
I am thinking GET
as there is no backend mutation but is GET
ideal for sending this kind of data to the server?