Spinnaker · Example Payload

Spinnaker List Applications Example

Continuous DeliveryContainersDevOpsMulti-CloudPipelines

Spinnaker List Applications Example is an example object payload from Spinnaker, 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://spinnaker.example.com:8084/applications",
    "headers": {
      "Authorization": "Bearer {oauth_token}",
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": [
      {
        "name": "my-web-app",
        "description": "Main customer-facing web application",
        "email": "team-platform@acme.com",
        "accounts": "prod-aws,staging-aws,dev-aws",
        "cloudProviders": "aws",
        "updated": 1746144000000
      },
      {
        "name": "payment-service",
        "description": "Payment processing microservice",
        "email": "team-payments@acme.com",
        "accounts": "prod-aws,staging-aws",
        "cloudProviders": "aws,kubernetes",
        "updated": 1746057600000
      }
    ]
  }
}