Appian · Schema

DeploymentResponse

Response returned when a deployment operation is successfully initiated. Contains the UUID for tracking the deployment and its current status.

AutomationBPMBusiness Process ManagementEnterprise SoftwareLow-CodeProcess AutomationRPAWorkflow

Properties

Name Type Description
uuid string Unique identifier for the deployment operation. Use this UUID to retrieve deployment results and logs.
url string URL endpoint for retrieving the deployment details and results.
status object
View JSON Schema on GitHub

JSON Schema

appian-deploymentresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeploymentResponse",
  "title": "DeploymentResponse",
  "type": "object",
  "description": "Response returned when a deployment operation is successfully initiated. Contains the UUID for tracking the deployment and its current status.",
  "properties": {
    "uuid": {
      "type": "string",
      "format": "uuid",
      "description": "Unique identifier for the deployment operation. Use this UUID to retrieve deployment results and logs.",
      "example": "d243b14c-3ba5-41c3-9f51-76da51beb8f5"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL endpoint for retrieving the deployment details and results.",
      "example": "https://mysite.appiancloud.com/suite/deployment-management/v2/deployments/d243b14c-3ba5-41c3-9f51-76da51beb8f5/"
    },
    "status": {
      "$ref": "#/components/schemas/DeploymentStatus"
    }
  },
  "required": [
    "uuid",
    "url",
    "status"
  ]
}