Posts

Controllers vs Minimal APIs in .NET 8: What to Choose and Why

Image
Controller-based APIs (ASP.NET Core Web API with [ApiController]) are the strongest default for large, long-lived APIs because they ship with conventions, discoverability, and mature MVC extension points for enforcing cross-cutting policies consistently.  Minimal APIs are a great fit for smaller or focused services (microservices/internal APIs) when you want an endpoint-first model and you’re willing to enforce structure intentionally with route groups, conventions, endpoint filters, and feature modules.  In most real workloads, this choice impacts maintainability and team consistency more than raw performance (see Microsoft’s controller-based Web API guidance at “Create web APIs with ASP.NET Core” on  Microsoft Learn  and  Minimal APIs ).  What’s the difference between controllers and Minimal APIs in .NET 8? What are controllers in .NET 8 Web API terms? Controllers map routes to controller action methods inside ...

Programmatic Template Editing Using the BoldSign Edit Template API

Image
  Templates often serve as living configuration in production eSignature workflows. As businesses scale, these templates change frequently, such as adding new approval steps, updated policies, branding refreshes, or additional required fields. When such updates are handled manually through dashboards, templates can drift across environments and introduce inconsistencies that break automated processes. The BoldSign Edit Template API solves this by allowing developers to update existing or draft templates programmatically. You can modify metadata, signer roles, and form fields directly from your backend or CI/CD pipelines, keeping templates synchronized with application logic while reducing operational overhead and human error. Why edit templates programmatically Templates often act as “living configuration” in production workflows. Over time, teams update templates due to: New approval steps (HR, finance) Policy changes (legal, compliance) Branding refreshes (marketing) New mandator...