Amazon DataZone · Arazzo Workflow

Amazon DataZone Request and Track Subscription

Version 1.0.0

Create a subscription request, then poll the request list until it leaves PENDING.

1 workflow 1 source API 1 provider
View Spec View on GitHub Data CatalogData GovernanceData ManagementData SharingAnalyticsArazzoWorkflows

Provider

amazon-datazone

Workflows

request-and-track-subscription
Submit a subscription request and poll until it is decided.
Creates a subscription request for a listing on behalf of a project, then lists subscription requests and repeats until the created request leaves the PENDING state.
2 steps inputs: domainIdentifier, listingIdentifier, requestReason, subscribingProjectIdentifier outputs: requests, subscriptionRequestId
1
createRequest
Create the subscription request for the listing on behalf of the project. The request starts in the PENDING state.
2
trackRequest
List subscription requests and repeat until the created request is no longer PENDING, indicating a governance decision was made.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon DataZone Request and Track Subscription
  summary: Create a subscription request, then poll the request list until it leaves PENDING.
  description: >-
    Creates a subscription request for a known catalog listing and then tracks
    its approval lifecycle by polling the subscription request list until the
    request is no longer PENDING (it has been ACCEPTED or REJECTED). This lets a
    consumer submit a data access request and wait for a governance decision in a
    single automated flow. 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
sourceDescriptions:
- name: subscriptionsApi
  url: ../openapi/amazon-datazone-subscriptions-api-openapi.yml
  type: openapi
workflows:
- workflowId: request-and-track-subscription
  summary: Submit a subscription request and poll until it is decided.
  description: >-
    Creates a subscription request for a listing on behalf of a project, then
    lists subscription requests and repeats until the created request leaves the
    PENDING state.
  inputs:
    type: object
    required:
    - domainIdentifier
    - listingIdentifier
    - subscribingProjectIdentifier
    - requestReason
    properties:
      domainIdentifier:
        type: string
        description: The identifier of the domain that owns the catalog.
      listingIdentifier:
        type: string
        description: The identifier of the catalog listing to subscribe to.
      subscribingProjectIdentifier:
        type: string
        description: The project identifier that will own the subscription.
      requestReason:
        type: string
        description: The business justification for the subscription request.
  steps:
  - stepId: createRequest
    description: >-
      Create the subscription request for the listing on behalf of the project.
      The request starts in the PENDING state.
    operationId: createSubscriptionRequest
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    requestBody:
      contentType: application/json
      payload:
        requestReason: $inputs.requestReason
        subscribedListings:
        - identifier: $inputs.listingIdentifier
        subscribedPrincipals:
        - project:
            identifier: $inputs.subscribingProjectIdentifier
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      subscriptionRequestId: $response.body#/id
      initialStatus: $response.body#/status
  - stepId: trackRequest
    description: >-
      List subscription requests and repeat until the created request is no
      longer PENDING, indicating a governance decision was made.
    operationId: listSubscriptionRequests
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.items[?(@.id == "$steps.createRequest.outputs.subscriptionRequestId")].status != "PENDING"
      type: jsonpath
    outputs:
      requests: $response.body#/items
  outputs:
    subscriptionRequestId: $steps.createRequest.outputs.subscriptionRequestId
    requests: $steps.trackRequest.outputs.requests

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-datazone-request-and-track-subscription-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.