Authorization for all but one API in an API set

Hey!

So, I have imported API from Swagger and added Tyk JWT Authorization.

Everything works fine, but, I need to disable Tyk Authorization on some endpoints.

How can I achieve this?

You should be able to disable auth for a particular api path in an api definition by applying the ignore list plugin.

      "extended_paths": {
        "ignored": [
          {
            "path": "get",
            "method_actions": {
              "GET": {
                "action": "no_action",
                "code": 200,
                "headers": {}
              }
            }
          }
        ]
      }