HTTP Status Codes in Web API August 21, 2026 malekimtiyajmca@gmail.com Use 2xx/4xx/5xx intentionally for clients. Read more →
Routing and Attributes in Web API August 21, 2026 malekimtiyajmca@gmail.com Use [Route], [HttpGet], and constraint templates. Read more →
Creating a Web API August 21, 2026 malekimtiyajmca@gmail.com Scaffold with dotnet new webapi and explore WeatherForecast sample. Read more →
HTTP Methods in Web API August 21, 2026 malekimtiyajmca@gmail.com Map actions to GET/POST/PUT/PATCH/DELETE correctly. Read more →
GET API in ASP.NET August 21, 2026 malekimtiyajmca@gmail.com Return collections/items with proper 200/404 handling. Read more →
POST API in ASP.NET August 21, 2026 malekimtiyajmca@gmail.com Create resources and return 201 with Location when appropriate. Read more →
PUT API in ASP.NET August 21, 2026 malekimtiyajmca@gmail.com Replace resources idempotently with PUT. Read more →
JWT Authentication in ASP.NET Core August 21, 2026 malekimtiyajmca@gmail.com Issue and validate JWTs for API clients. Read more →
Role-Based Authorization in ASP.NET Core August 21, 2026 malekimtiyajmca@gmail.com Gate features with roles and claims. Read more →
Introduction to Web API August 21, 2026 malekimtiyajmca@gmail.com Build HTTP APIs with ASP.NET Core Web API templates. Read more →