Amazon Elastic Transcoder · Arazzo Workflow

Amazon Elastic Transcoder List Jobs by Pipeline and Read the First Job

Version 1.0.0

List the jobs currently in a pipeline, then read detailed information about the first job returned.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub Amazon Web ServicesMediaTranscodingVideoArazzoWorkflows

Provider

amazon-elastic-transcoder

Workflows

list-jobs-by-pipeline-read
List jobs in a pipeline and read the first one in detail.
Reads the pipeline to confirm it exists, lists the jobs currently in it, and branches to read the first returned job when the list is non-empty.
3 steps inputs: ascending, pipelineId outputs: firstJobId, jobStatus
1
readPipeline
Read the pipeline to confirm it exists and is reachable before listing its jobs.
2
listJobs
List the jobs currently in the pipeline, ordered by submission time, and branch on whether any jobs were returned.
3
readFirstJob
Read the first job returned by the pipeline listing to retrieve its full status and details.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Elastic Transcoder List Jobs by Pipeline and Read the First Job
  summary: List the jobs currently in a pipeline, then read detailed information about the first job returned.
  description: >-
    A read-oriented inspection flow. The workflow confirms a pipeline exists,
    lists the jobs currently in that pipeline in chronological order, and then
    reads the first job in the list to retrieve its full status and details.
    Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-3710.40
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-3710.40
      capability_name: Transcoding & Format Conversion
      spec: amazon-elastic-transcoder-pipelines-api-openapi.yml
      confidence: 0.8
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: jobsApi
  url: ../openapi/amazon-elastic-transcoder-jobs-api-openapi.yml
  type: openapi
- name: jobsbypipelineApi
  url: ../openapi/amazon-elastic-transcoder-jobsbypipeline-api-openapi.yml
  type: openapi
- name: pipelinesApi
  url: ../openapi/amazon-elastic-transcoder-pipelines-api-openapi.yml
  type: openapi
workflows:
- workflowId: list-jobs-by-pipeline-read
  summary: List jobs in a pipeline and read the first one in detail.
  description: >-
    Reads the pipeline to confirm it exists, lists the jobs currently in it, and
    branches to read the first returned job when the list is non-empty.
  inputs:
    type: object
    required:
    - pipelineId
    properties:
      pipelineId:
        type: string
        description: The Id of the pipeline whose jobs you want to list.
      ascending:
        type: string
        description: "true to list jobs oldest-first, false for newest-first."
  steps:
  - stepId: readPipeline
    description: >-
      Read the pipeline to confirm it exists and is reachable before listing its
      jobs.
    operationId: ReadPipeline
    parameters:
    - name: Id
      in: path
      value: $inputs.pipelineId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      pipelineStatus: $response.body#/Pipeline/Status
  - stepId: listJobs
    description: >-
      List the jobs currently in the pipeline, ordered by submission time, and
      branch on whether any jobs were returned.
    operationId: ListJobsByPipeline
    parameters:
    - name: PipelineId
      in: path
      value: $inputs.pipelineId
    - name: Ascending
      in: query
      value: $inputs.ascending
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstJobId: $response.body#/Jobs/0/Id
      nextPageToken: $response.body#/NextPageToken
    onSuccess:
    - name: hasJobs
      type: goto
      stepId: readFirstJob
      criteria:
      - context: $response.body
        condition: $.Jobs.length > 0
        type: jsonpath
    - name: noJobs
      type: end
      criteria:
      - context: $response.body
        condition: $.Jobs.length == 0
        type: jsonpath
  - stepId: readFirstJob
    description: >-
      Read the first job returned by the pipeline listing to retrieve its full
      status and details.
    operationId: ReadJob
    parameters:
    - name: Id
      in: path
      value: $steps.listJobs.outputs.firstJobId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      jobId: $response.body#/Job/Id
      jobStatus: $response.body#/Job/Status
  outputs:
    firstJobId: $steps.listJobs.outputs.firstJobId
    jobStatus: $steps.readFirstJob.outputs.jobStatus

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/amazon-elastic-transcoder-list-jobs-by-pipeline-read-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.