IBM WebSphere · Example Payload

Websphere Deployapplication Example

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware

Websphere Deployapplication Example is an example object payload from IBM WebSphere, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "deployApplication",
  "method": "POST",
  "path": "/applications",
  "summary": "Deploy a New Application",
  "requestExamples": [
    {
      "contentType": "multipart/form-data",
      "name": "DeployapplicationRequestExample",
      "example": {
        "file": "example_value",
        "name": "Example Title",
        "contextRoot": "example_value",
        "targetServer": "example_value"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Deployapplication201Example",
      "example": {
        "name": "Example Title",
        "status": "started",
        "contextRoot": "example_value",
        "targetServer": "example_value",
        "deployedModules": [
          {
            "name": "Example Title",
            "type": "web",
            "uri": "example_value"
          }
        ],
        "lastModified": "2026-01-15T10:30:00Z"
      }
    },
    {
      "status": "409",
      "contentType": "application/json",
      "name": "Deployapplication409Example",
      "example": {
        "code": "example_value",
        "message": "example_value",
        "details": "example_value"
      }
    }
  ]
}