Hi, Found bug in PackingListsController.cs: ```C# [HttpGet("{id:guid}")] ``` returns 404 every time because of lowercase id, so you can change it to: ```C# [HttpGet("{Id:guid}")] ``` That fix Swagger response