Amazon HealthImaging · Arazzo Workflow

Amazon HealthImaging Copy Image Set

Version 1.0.0

Resolve a source image set version, copy it to a destination, then poll until ACTIVE.

1 workflow 1 source API 1 provider
View Spec View on GitHub HealthcareHIPAAMachine-LearningMedical ImagingDICOMArazzoWorkflows

Provider

amazon-healthimaging

Workflows

copy-image-set
Copy a source image set into a destination and wait until it is ACTIVE.
Captures the source image set's latest version, copies it onto the destination image set, and polls the destination until copy processing finishes and the image set becomes ACTIVE.
4 steps inputs: datastoreId, destinationImageSetId, sourceImageSetId outputs: destinationImageSetId, destinationLatestVersionId, imageSetState
1
getSourceImageSet
Read the source image set to capture its latest version identifier, which the copy request must reference.
2
getDestinationImageSet
Read the destination image set to capture its latest version identifier, required to authorize the copy onto an existing image set.
3
copyImageSet
Copy the source image set version onto the destination image set, using the captured latest version identifiers for both ends of the copy.
4
pollDestination
Read the destination image set and check whether copy processing has finished. Repeats while the image set is still LOCKED.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon HealthImaging Copy Image Set
  summary: Resolve a source image set version, copy it to a destination, then poll until ACTIVE.
  description: >-
    Duplicates an image set within a data store. The workflow reads the source
    image set to capture its latest version, issues a copy into a destination
    image set, and then polls the destination image set until it settles into
    the ACTIVE state. 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-2860.30
  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-2860.30
      capability_name: Diagnostic Imaging Services
      spec: amazon-healthimaging-datastore-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: datastoreApi
  url: ../openapi/amazon-healthimaging-datastore-api-openapi.yml
  type: openapi
workflows:
- workflowId: copy-image-set
  summary: Copy a source image set into a destination and wait until it is ACTIVE.
  description: >-
    Captures the source image set's latest version, copies it onto the
    destination image set, and polls the destination until copy processing
    finishes and the image set becomes ACTIVE.
  inputs:
    type: object
    required:
    - datastoreId
    - sourceImageSetId
    - destinationImageSetId
    properties:
      datastoreId:
        type: string
        description: The identifier of the data store containing both image sets.
      sourceImageSetId:
        type: string
        description: The source image set identifier to copy from.
      destinationImageSetId:
        type: string
        description: The destination image set identifier to copy into.
  steps:
  - stepId: getSourceImageSet
    description: >-
      Read the source image set to capture its latest version identifier, which
      the copy request must reference.
    operationId: GetImageSet
    parameters:
    - name: datastoreId
      in: path
      value: $inputs.datastoreId
    - name: imageSetId
      in: path
      value: $inputs.sourceImageSetId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      sourceVersionId: $response.body#/versionId
  - stepId: getDestinationImageSet
    description: >-
      Read the destination image set to capture its latest version identifier,
      required to authorize the copy onto an existing image set.
    operationId: GetImageSet
    parameters:
    - name: datastoreId
      in: path
      value: $inputs.datastoreId
    - name: imageSetId
      in: path
      value: $inputs.destinationImageSetId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      destinationVersionId: $response.body#/versionId
  - stepId: copyImageSet
    description: >-
      Copy the source image set version onto the destination image set, using
      the captured latest version identifiers for both ends of the copy.
    operationId: CopyImageSet
    parameters:
    - name: datastoreId
      in: path
      value: $inputs.datastoreId
    - name: sourceImageSetId
      in: path
      value: $inputs.sourceImageSetId
    requestBody:
      contentType: application/json
      payload:
        copyImageSetInformation:
          sourceImageSet:
            latestVersionId: $steps.getSourceImageSet.outputs.sourceVersionId
          destinationImageSet:
            imageSetId: $inputs.destinationImageSetId
            latestVersionId: $steps.getDestinationImageSet.outputs.destinationVersionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      destinationImageSetId: $response.body#/destinationImageSetProperties/imageSetId
      destinationLatestVersionId: $response.body#/destinationImageSetProperties/latestVersionId
  - stepId: pollDestination
    description: >-
      Read the destination image set and check whether copy processing has
      finished. Repeats while the image set is still LOCKED.
    operationId: GetImageSet
    parameters:
    - name: datastoreId
      in: path
      value: $inputs.datastoreId
    - name: imageSetId
      in: path
      value: $steps.copyImageSet.outputs.destinationImageSetId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      imageSetState: $response.body#/imageSetState
      imageSetWorkflowStatus: $response.body#/imageSetWorkflowStatus
    onSuccess:
    - name: copyActive
      type: end
      criteria:
      - context: $response.body
        condition: $.imageSetState == "ACTIVE"
        type: jsonpath
    - name: copyLocked
      type: goto
      stepId: pollDestination
      criteria:
      - context: $response.body
        condition: $.imageSetState == "LOCKED"
        type: jsonpath
  outputs:
    destinationImageSetId: $steps.copyImageSet.outputs.destinationImageSetId
    destinationLatestVersionId: $steps.copyImageSet.outputs.destinationLatestVersionId
    imageSetState: $steps.pollDestination.outputs.imageSetState

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-healthimaging-copy-image-set-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.