I want to design an http route that sets a phone number as main for the current authenticated user.
could you suggest the proper http method and route to use.
I'm hesitating between GET /auth/phones/{phone_id}/main And PATCH /auth/phones/{phone_id} with object {main: true} in body request.
when setting a new main phone old main phone will automatically unset.