Amazon DataZone · Arazzo Workflow

Amazon DataZone Discover and Subscribe

Version 1.0.0

Search catalog listings, then raise a subscription request for the first match.

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

Provider

amazon-datazone

Workflows

discover-and-subscribe
Find a catalog listing and request a subscription to it for a project.
Searches listings in the domain catalog, and when at least one listing is returned, creates a subscription request binding the first listing to the requesting project.
2 steps inputs: domainIdentifier, requestReason, subscribingProjectIdentifier outputs: listingId, status, subscriptionRequestId
1
searchListings
Search the domain catalog for available asset listings to subscribe to.
2
requestSubscription
Raise a subscription request for the discovered listing on behalf of the subscribing project. The request is created in the PENDING state.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon DataZone Discover and Subscribe
  summary: Search catalog listings, then raise a subscription request for the first match.
  description: >-
    Drives the data-consumer access pattern in Amazon DataZone. It searches the
    catalog listings in a domain, branches on whether any listing was returned,
    and when a match is found it raises a subscription request that names the
    discovered listing and the requesting project as the subscribing principal.
    When no listing matches, the workflow ends without creating a request. 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: listingsApi
  url: ../openapi/amazon-datazone-listings-api-openapi.yml
  type: openapi
- name: subscriptionsApi
  url: ../openapi/amazon-datazone-subscriptions-api-openapi.yml
  type: openapi
workflows:
- workflowId: discover-and-subscribe
  summary: Find a catalog listing and request a subscription to it for a project.
  description: >-
    Searches listings in the domain catalog, and when at least one listing is
    returned, creates a subscription request binding the first listing to the
    requesting project.
  inputs:
    type: object
    required:
    - domainIdentifier
    - subscribingProjectIdentifier
    - requestReason
    properties:
      domainIdentifier:
        type: string
        description: The identifier of the domain whose catalog is searched.
      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: searchListings
    description: >-
      Search the domain catalog for available asset listings to subscribe to.
    operationId: searchListings
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    - name: maxResults
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstListingId: $response.body#/items/0/id
    onSuccess:
    - name: listingFound
      type: goto
      stepId: requestSubscription
      criteria:
      - context: $response.body
        condition: $.items.length > 0
        type: jsonpath
    - name: noListing
      type: end
      criteria:
      - context: $response.body
        condition: $.items.length == 0
        type: jsonpath
  - stepId: requestSubscription
    description: >-
      Raise a subscription request for the discovered listing on behalf of the
      subscribing project. The request is created in the PENDING state.
    operationId: createSubscriptionRequest
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    requestBody:
      contentType: application/json
      payload:
        requestReason: $inputs.requestReason
        subscribedListings:
        - identifier: $steps.searchListings.outputs.firstListingId
        subscribedPrincipals:
        - project:
            identifier: $inputs.subscribingProjectIdentifier
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      subscriptionRequestId: $response.body#/id
      status: $response.body#/status
  outputs:
    listingId: $steps.searchListings.outputs.firstListingId
    subscriptionRequestId: $steps.requestSubscription.outputs.subscriptionRequestId
    status: $steps.requestSubscription.outputs.status

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-discover-and-subscribe-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.