openapi: 3.2.0 info: version: '9.0' title: NGINX Plus REST HTTP API description: NGINX Plus REST API provides access to NGINX Plus status information, on-the-fly configuration of upstream servers and key-value pairs management for http and stream. servers: - url: /api/9 tags: - name: HTTP paths: /http/: get: tags: - HTTP summary: Return list of HTTP-related endpoints description: Returns a list of first level HTTP endpoints. operationId: getHttp responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/ArrayOfStrings' '404': description: Unknown version (*UnknownVersion*) content: application/json: schema: $ref: '#/components/schemas/NginxError' components: schemas: NginxError: title: Error description: 'nginx error object. ' type: object properties: error: type: object properties: status: type: integer description: HTTP error code. text: type: string description: Error description. code: type: string description: Internal nginx error code. request_id: type: string description: The ID of the request, equals the value of the $request_id variable. href: type: string description: Link to reference documentation. ArrayOfStrings: title: Array description: 'An array of strings. ' type: array items: type: string