Looks up a deployed application

GET /applications/{applicationId}/deployed/{deploymentKey}

Parameters

Name Required Type Description
applicationId true string
deploymentKey true string

Response

{
  "type": "object",
  "description": "Deployed Application",
  "properties": {
    "_doc": {
      "type": "string"
    },
    "_system": {
      "type": "object",
      "properties": {
        "modified_on": {
          "type": "timestamp"
        },
        "modified_by": {
          "type": "string"
        },
        "modified_by_principal_id": {
          "type": "string"
        },
        "modified_by_principal_domain_id": {
          "type": "string"
        },
        "created_on": {
          "type": "timestamp"
        },
        "created_by": {
          "type": "string"
        },
        "created_by_principal_id": {
          "type": "string"
        },
        "created_by_principal_domain_id": {
          "type": "string"
        }
      }
    },
    "applicationId": {
      "type": "string"
    },
    "deploymentKey": {
      "type": "string"
    },
    "deploymentWebhost": {
      "type": "string"
    },
    "host": {
      "type": "string"
    },
    "urls": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "extends": "document"
}