Microsoft Azure App Service Operations API

Operations operations

OpenAPI Specification

microsoft-azure-app-service-operations-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Azure App Service REST Operations API
  description: Azure App Service lets you run web apps, mobile app back ends, and API apps in the cloud. The REST API manages App Service plans, web apps, slots, configurations, deployments, and certificates.
  version: '2024-01-01'
servers:
- url: https://management.azure.com
  description: Azure Resource Manager
security:
- azure_auth:
  - user_impersonation
tags:
- name: Operations
  description: Operations operations
paths:
  /providers/Microsoft.Web/operations:
    get:
      operationId: listOperations
      summary: Azure App Service REST API List operations
      description: Lists all available REST API operations for Microsoft.Web.
      tags:
      - Operations
      parameters:
      - $ref: '#/components/parameters/apiVersion'
      responses:
        '200':
          description: Operations list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OperationList'
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    Operation:
      type: object
      properties:
        name:
          type: string
        display:
          type: object
          properties:
            provider:
              type: string
            resource:
              type: string
            operation:
              type: string
            description:
              type: string
        isDataAction:
          type: boolean
    OperationList:
      type: object
      properties:
        value:
          type: array
          items:
            $ref: '#/components/schemas/Operation'
        nextLink:
          type: string
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            target:
              type: string
  parameters:
    apiVersion:
      name: api-version
      in: query
      required: true
      description: The API version to use for this operation.
      schema:
        type: string
  securitySchemes:
    azure_auth:
      type: oauth2
      description: Azure Active Directory OAuth2 Flow.
      flows:
        implicit:
          authorizationUrl: https://login.microsoftonline.com/common/oauth2/authorize
          scopes:
            user_impersonation: Impersonate your user account
externalDocs:
  description: Azure App Service REST API Documentation
  url: https://learn.microsoft.com/en-us/rest/api/appservice/
x-generated-from: https://learn.microsoft.com/en-us/rest/api/appservice/
x-generated-by: claude-crawl-2026-05-08