Oracle WebLogic Server APIs Application Deployments API

Deploy, undeploy, redeploy, and manage application configurations using the edit tree

Operations 5

GET /edit/appDeployments Oracle WebLogic Server APIs List all application deployments #
POST /edit/appDeployments Oracle WebLogic Server APIs Create an application deployment #
GET /edit/appDeployments/{appName} Oracle WebLogic Server APIs Get an application deployment #
POST /edit/appDeployments/{appName} Oracle WebLogic Server APIs Update an application deployment #
DELETE /edit/appDeployments/{appName} Oracle WebLogic Server APIs Remove an application deployment #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/weblogic-application-deployments-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

weblogic-application-deployments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Oracle WebLogic Server APIs Oracle WebLogic Server Deployment Application Deployments API
  description: RESTful API for deploying, undeploying, redeploying, and managing applications and shared libraries on Oracle WebLogic Server. Supports uploading application archives, deploying from the server file system, managing deployment plans, and controlling application lifecycle states across servers and clusters.
  version: 14.1.1.0
  contact:
    name: Oracle Support
    url: https://support.oracle.com
  license:
    name: Oracle Technology Network License
    url: https://www.oracle.com/legal/terms.html
servers:
- url: https://{host}:{port}/management/weblogic/latest
  description: WebLogic Server Administration Server
  variables:
    host:
      default: localhost
      description: Hostname of the WebLogic Administration Server
    port:
      default: '7001'
      description: Port of the WebLogic Administration Server
security:
- basicAuth: []
tags:
- name: Application Deployments
  description: Deploy, undeploy, redeploy, and manage application configurations using the edit tree
paths:
  /edit/appDeployments:
    get:
      operationId: listAppDeployments
      summary: Oracle WebLogic Server APIs List all application deployments
      description: Returns all application deployment configurations in the domain. Requires an active edit session for modification operations.
      tags:
      - Application Deployments
      responses:
        '200':
          description: List of application deployments
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/AppDeployment'
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: createAppDeployment
      summary: Oracle WebLogic Server APIs Create an application deployment
      description: Creates a new application deployment configuration. Requires an active edit session. The application must be accessible from the administration server file system or uploaded first.
      tags:
      - Application Deployments
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AppDeploymentCreate'
      responses:
        '201':
          description: Application deployment created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppDeployment'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /edit/appDeployments/{appName}:
    get:
      operationId: getAppDeployment
      summary: Oracle WebLogic Server APIs Get an application deployment
      description: Returns the configuration of a specific application deployment.
      tags:
      - Application Deployments
      parameters:
      - $ref: '#/components/parameters/appName'
      responses:
        '200':
          description: Application deployment configuration
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppDeployment'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    post:
      operationId: updateAppDeployment
      summary: Oracle WebLogic Server APIs Update an application deployment
      description: Updates the configuration of a specific application deployment. Requires an active edit session.
      tags:
      - Application Deployments
      parameters:
      - $ref: '#/components/parameters/appName'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AppDeploymentUpdate'
      responses:
        '200':
          description: Application deployment updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppDeployment'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      operationId: deleteAppDeployment
      summary: Oracle WebLogic Server APIs Remove an application deployment
      description: Removes an application deployment configuration from the domain. Requires an active edit session. This undeploys the application from all targets upon activation.
      tags:
      - Application Deployments
      parameters:
      - $ref: '#/components/parameters/appName'
      responses:
        '200':
          description: Application deployment removed
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    AppDeploymentCreate:
      type: object
      properties:
        name:
          type: string
          description: Application name
        sourcePath:
          type: string
          description: Path to the application archive or exploded directory
        targets:
          type: array
          items:
            type: string
          description: Target servers or clusters
        moduleType:
          type: string
          description: Module type
          enum:
          - ear
          - war
          - jar
          - rar
        planPath:
          type: string
          description: Path to the deployment plan
        stagingMode:
          type: string
          description: Application staging mode
          enum:
          - stage
          - nostage
          - external_stage
        securityDDModel:
          type: string
          enum:
          - DDOnly
          - CustomRoles
          - CustomRolesAndPolicies
          - Advanced
        deploymentOrder:
          type: integer
          default: 100
        notes:
          type: string
      required:
      - name
      - sourcePath
      - targets
    Link:
      type: object
      properties:
        rel:
          type: string
        href:
          type: string
          format: uri
        title:
          type: string
    Error:
      type: object
      properties:
        type:
          type: string
        title:
          type: string
        status:
          type: integer
        detail:
          type: string
    AppDeploymentUpdate:
      type: object
      properties:
        targets:
          type: array
          items:
            type: string
          description: Updated target servers or clusters
        planPath:
          type: string
          description: Updated deployment plan path
        stagingMode:
          type: string
          enum:
          - stage
          - nostage
          - external_stage
        securityDDModel:
          type: string
          enum:
          - DDOnly
          - CustomRoles
          - CustomRolesAndPolicies
          - Advanced
        deploymentOrder:
          type: integer
        notes:
          type: string
    AppDeployment:
      type: object
      properties:
        name:
          type: string
          description: Application name
        sourcePath:
          type: string
          description: Path to the application archive or exploded directory
        targets:
          type: array
          items:
            type: string
          description: Target servers or clusters
        moduleType:
          type: string
          description: Module type
          enum:
          - ear
          - war
          - jar
          - rar
        planPath:
          type: string
          description: Path to the deployment plan
        stagingMode:
          type: string
          description: Application staging mode
          enum:
          - stage
          - nostage
          - external_stage
        securityDDModel:
          type: string
          description: Security deployment descriptor model
          enum:
          - DDOnly
          - CustomRoles
          - CustomRolesAndPolicies
          - Advanced
        versionIdentifier:
          type: string
          description: Application version identifier
        notes:
          type: string
          description: Optional notes about the deployment
        deploymentOrder:
          type: integer
          description: Order in which this application is deployed relative to other deployments. Lower values deploy first.
          default: 100
        links:
          type: array
          items:
            $ref: '#/components/schemas/Link'
  responses:
    Unauthorized:
      description: Authentication required or invalid credentials
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    BadRequest:
      description: Invalid request parameters or body
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: The specified resource was not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  parameters:
    appName:
      name: appName
      in: path
      required: true
      description: The name of the application deployment
      schema:
        type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: WebLogic Server administrator credentials
externalDocs:
  description: Deploying Applications to Oracle WebLogic Server
  url: https://docs.oracle.com/en/middleware/standalone/weblogic-server/14.1.1.0/develop-and-deploy.html