Paths and Operations
In OpenAPI terms, paths are endpoints (resources), such as /users
or /reports/summary/
, that your API exposes, 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 the API server URL. The full request URL is constructed as <server-url>/path
. Global servers
can also be overridden on the path level or operation level (more on that below). Paths may have an optional short summary
and a longer description
for documentation purposes. This information is supposed to be relevant to all operations in this path. description
can be multi-line and supports Markdown (CommonMark) for rich text representation.
Path Templating
You can use curly braces {}
to mark parts of an 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. OpenAPI 3.0 supports get
, post
, put
, patch
, delete
, head
, options
, and trace
. 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. OpenAPI 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). Below is a minimal example of an operation:
Here is a more detailed example with parameters and response schema:
Operations also support some optional elements for documentation purposes:
- A short
summary
and a longerdescription
of what an operation does.description
can be multi-line and supports Markdown (CommonMark) for rich text representation. tags
– used to group operations logically by resources or any other qualifier. See Grouping Operations With Tags.externalDocs
– used to reference an external resource that contains additional documentation.
Operation Parameters
OpenAPI 3.0 supports operation parameters passed via path, query string, headers, and cookies. You can also define the request body for operations that transmit data to the server, such as POST, PUT and PATCH. For details, see Describing Parameters and Describing Request Body.
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 OpenAPI 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:
operationId
operationId
is an optional unique string used to identify an operation. If provided, these IDs must be unique among all operations described in your API.
Some common use cases for operationId are:
- Some code generators use this value to name the corresponding methods in code.
- Links can refer to the linked operations by
operationId
.
Deprecated Operations
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:
Overriding Global Servers
The global servers
array can be overridden on the path level or operation level. This is useful if some endpoints use a different server or base path than the rest of the API. Common examples are:
-
Different base URL for file upload and download operations.
-
Deprecated but still functional endpoints.
servers:
Did not find what you were looking for? Ask the community Found a mistake? Let us know