The application layer is exposed as a REST service hosted on ASP.NET Core.
ABP uses Swagger.io to document the end points as well as provide a handy user interface to directly interact with the backend.
The tenant id is determined in the following order:
- Via the URL
- Via the Abp.TenantId key-value pair in the header
- Via a cookie
Open Startup.cs in .Web.Host/Startup and in the services.AddSwaggerGen
scope add the following line:
services.AddSwaggerGen(options =>
{
...
options.DescribeAllEnumsAsStrings();
}