Apache Tomcat · Example Payload

Tomcat List Applications Example

Application ServerJavaServlet ContainerWeb ServerOpen SourceApache

Tomcat List Applications Example is an example object payload from Apache Tomcat, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "http://localhost:8080/manager/text/list",
    "headers": {
      "Authorization": "Basic {base64(admin:password)}"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "text/plain;charset=utf-8"
    },
    "body": "OK - Listed applications for virtual host localhost\n/webdav:running:0:webdav\n/examples:running:0:examples\n/manager:running:0:manager\n/:running:0:ROOT\n/myapp:running:5:myapp"
  }
}