Amazon CodePipeline Executions API

Operations for managing pipeline executions

Operations 2

POST /startPipelineExecution Amazon CodePipeline Start a Pipeline Execution #
POST /getPipelineExecution Amazon CodePipeline Get Pipeline Execution Details #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/amazon-codepipeline-executions-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

amazon-codepipeline-executions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon CodePipeline Executions API
  description: Amazon CodePipeline is a fully managed continuous delivery service that helps you automate your release pipelines for fast and reliable application and infrastructure updates. The API enables programmatic management of pipelines, stages, actions, and pipeline executions.
  version: '2015-07-09'
  contact:
    name: Amazon Web Services
    url: https://aws.amazon.com/codepipeline/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: https://codepipeline.amazonaws.com
  description: Amazon CodePipeline API endpoint
tags:
- name: Executions
  description: Operations for managing pipeline executions
paths:
  /startPipelineExecution:
    post:
      operationId: StartPipelineExecution
      summary: Amazon CodePipeline Start a Pipeline Execution
      description: Starts the specified pipeline, causing it to run its most recent revision.
      requestBody:
        required: true
        content:
          application/x-amz-json-1.1:
            schema:
              type: object
              required:
              - name
              properties:
                name:
                  type: string
                  description: The name of the pipeline to start.
            examples:
              StartPipelineExecutionRequestExample:
                summary: Default StartPipelineExecution request
                x-microcks-default: true
                value:
                  name: example-resource
      responses:
        '200':
          description: Pipeline execution started
          content:
            application/json:
              schema:
                type: object
                properties:
                  pipelineExecutionId:
                    type: string
              examples:
                StartPipelineExecution200Example:
                  summary: Default StartPipelineExecution 200 response
                  x-microcks-default: true
                  value:
                    pipelineExecutionId: '500123'
        '404':
          description: Pipeline not found
      tags:
      - Executions
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /getPipelineExecution:
    post:
      operationId: GetPipelineExecution
      summary: Amazon CodePipeline Get Pipeline Execution Details
      description: Returns information about an execution of a pipeline.
      requestBody:
        required: true
        content:
          application/x-amz-json-1.1:
            schema:
              type: object
              required:
              - pipelineName
              - pipelineExecutionId
              properties:
                pipelineName:
                  type: string
                pipelineExecutionId:
                  type: string
            examples:
              GetPipelineExecutionRequestExample:
                summary: Default GetPipelineExecution request
                x-microcks-default: true
                value:
                  pipelineName: example-resource
                  pipelineExecutionId: '500123'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PipelineExecution'
              examples:
                GetPipelineExecution200Example:
                  summary: Default GetPipelineExecution 200 response
                  x-microcks-default: true
                  value:
                    pipelineName: example-resource
                    pipelineExecutionId: '500123'
                    pipelineVersion: 1
                    status: InProgress
                    statusSummary: ACTIVE
        '404':
          description: Execution not found
      tags:
      - Executions
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    PipelineExecution:
      type: object
      properties:
        pipelineName:
          type: string
        pipelineExecutionId:
          type: string
        pipelineVersion:
          type: integer
        status:
          type: string
          enum:
          - InProgress
          - Stopped
          - Stopping
          - Succeeded
          - Superseded
          - Failed
        statusSummary:
          type: string