• Swagger-UI Message "Could not render ue, see the console"

    Hi,

    we are testing first queries for the API server with version 9.1.1.
    We were able to add our company logo to the new portal using the KB article.

    With the Swagger UI doc we want to create and test more queries - but in the Swagger UI we get the following…

  • API Designer/swagger generation: Distinct description for every method

    I wonder if there's a way to tell the generation process to use a description per HTTP method, not (only) per endpoint

    Example:

    builder.AddMethod(
        Method.Define("test")
            .Handle<TestData>("PUT", (t, r) => { })
            .Handle<TestData>(…

  • API-Designer: Duplicate operationIds in the swagger definition

    When we define API methods like

    builder.AddMethod(Method.Define("obj").HandleGet(qr => "list of objs"));
    builder.AddMethod(Method.Define("obj/{id}").WithParameter("id", isInQuery: false).HandleGet(qr => "single obj"));…