Paths and Operations
In Swagger terms, paths are endpoints (resources) that your API exposes, such as /users
or /reports/summary
, and operations are the HTTP methods used to manipulate these paths, such as GET, POST or DELETE.
Paths
API paths and operations are defined in the global paths
section of the API specification.
All paths are relative to basePath
(see API Host and Base URL). The full request URL is constructed as scheme://host/basePath/path
.
Path Templating
Swagger supports path templating, meaning you can use curly braces {}
to mark parts of a URL as path parameters:
The API client needs to provide appropriate parameter values when making an API call, such as /users/5
or /users/12
.
Operations
For each path, you define operations (HTTP methods) that can be used to access that path. Swagger 2.0 supports get
, post
, put
, patch
, delete
, head
, and options
. A single path can support multiple operations, for example, GET /users
to get a list of users and POST /users
to add a new user. Swagger defines a unique operation as a combination of a path and an HTTP method. This means that two GET or two POST methods for the same path are not allowed – even if they have different parameters (parameters have no effect on uniqueness). Minimal example of an operation:
More detailed example with parameters and response schema:
Operations support some optional elements for documentation purposes:
- A short
summary
and a longerdescription
of what the operation does.description
can be multi-line and supports GitHub Flavored Markdown for rich text representation. tags
are used to group operations in Swagger UI.externalDocs
allows referencing an external resource that contains additional documentation.
Operation Parameters
Swagger supports operation parameters passed via path, query string, headers and request body. For details, see Describing Parameters.
operationId
Each operation may specify a unique operationId
. Some code generators use this value to name the corresponding methods in code.
Query String in Paths
Query string parameters must not be included in paths. They should be defined as query parameters instead. Incorrect:
Correct:
This also means that it is impossible to have multiple paths that differ only in query string, such as:
This is because Swagger considers a unique operation as a combination of a path and the HTTP method, and additional parameters do not make the operation unique. Instead, you should use unique paths such as:
Marking as Deprecated
You can mark specific operations as deprecated
to indicate that they should be transitioned out of usage:
Tools may handle deprecated operations in a specific way. For example, Swagger UI displays them with a different style:
Did not find what you were looking for? Ask the community
Found a mistake? Let us know