Spinnaker · Example Payload

Spinnaker Invoke Pipeline Example

Continuous DeliveryContainersDevOpsMulti-CloudPipelines

Spinnaker Invoke Pipeline 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": "POST",
    "url": "http://spinnaker.example.com:8084/applications/my-web-app/pipelineConfigs/Deploy%20to%20Production",
    "headers": {
      "Authorization": "Bearer {oauth_token}",
      "Content-Type": "application/json",
      "Accept": "application/json"
    },
    "body": {
      "parameters": {
        "imageTag": "v2.5.1",
        "region": "us-east-1",
        "instanceCount": "3"
      }
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "ref": "/tasks/01JPZX3N8KQ7VB4PZ5W6YRKM4A"
    }
  }
}