Here is what I have so far:
[Route("EndTest/{examId:int}/{userTestId:int}/{retrieve:boolean}")]
public async Task<IHttpActionResult> EndTest(int examId, int userTestId, bool retrieve)
Can someone validate if this is the correct way to do this, if it is even possible and if so then how could I pass the boolean with a Http call?