Routing
An API definition must provide a list of callable paths – sometimes also called routes or endpoints.
In swagger.yaml
this is defined in the paths
section:
One important setting is the basePath
property. All described API paths are only accessible below that basePath
.
In general, only the paths that are explicitly defined are permissible, i.e. they may not be extended arbitrarily.
In our example, the following paths are valid:
While these are undefined (especially those pointing outside of base path):
Assigning FLAT Flows
You can specify a flow for a path (as in /dashboard
) or for specific methods/operations (as in /users
). The same flow can be used for multiple paths or methods.
Fallback Flow
An x-flat-flow
property set directly in the paths
object behaves as a fallback flow. If the incoming request has matched a defined path, but that path did not define a flow, the fallback flow will be executed:
Init Flow
For requests outside of the API basePath
(e.g. /
or /assets
), the init flow is not executed. It is only called for API requests.
Error Flow
Default Flow
Assigning FLAT Proxies
A simpler way to achieve this is by using x-flat-proxy
in the swagger.yaml
:
x-flat-proxy
can be used below paths
, paths/<path>
and paths/<path>/<operation>
.
x-flat-proxy
and x-flat-flow
are alternatives and cannot be used in combination.
Path Parameters
Swagger paths can define path parameters:
Last updated
Was this helpful?