Adobe · Arazzo Workflow

Adobe Download Then Clean Up an Asset

Version 1.0.0

Resolve a download URI for a finished output asset, then delete it from the platform.

1 workflow 1 source API 1 provider
View Spec View on GitHub Fortune 1000AnalyticsCreative CloudDigital Asset ManagementDocument ServicesE-CommerceE-SignaturesExperience CloudGenerative AIMarketingPDFWork ManagementArazzoWorkflows

Provider

adobe

Workflows

download-and-cleanup-asset
Get a download URI for an asset, then delete it from the platform.
Resolves a pre-signed download URI for an existing asset and then issues a delete so the asset no longer occupies platform storage.
2 steps inputs: accessToken, assetID outputs: deletedAssetID, downloadUri
1
getDownloadUri
Resolve a pre-signed download URI for the asset so its content can be retrieved before deletion.
2
deleteAsset
Delete the asset from the platform now that its download URI has been resolved. A 204 confirms the asset was removed.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Adobe Download Then Clean Up an Asset
  summary: Resolve a download URI for a finished output asset, then delete it from the platform.
  description: >-
    A housekeeping flow for the Adobe PDF Services platform. Given the asset ID
    of a completed job output, the workflow first resolves a pre-signed
    download URI so the file can be retrieved, then deletes the asset from the
    platform to reclaim storage once it has been pulled. Each 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: assetsApi
  url: ../openapi/adobe-assets-api-openapi.yml
  type: openapi
workflows:
- workflowId: download-and-cleanup-asset
  summary: Get a download URI for an asset, then delete it from the platform.
  description: >-
    Resolves a pre-signed download URI for an existing asset and then issues a
    delete so the asset no longer occupies platform storage.
  inputs:
    type: object
    required:
    - accessToken
    - assetID
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token from Adobe IMS.
      assetID:
        type: string
        description: The unique identifier of the asset to download and then delete.
  steps:
  - stepId: getDownloadUri
    description: >-
      Resolve a pre-signed download URI for the asset so its content can be
      retrieved before deletion.
    operationId: getAsset
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: assetID
      in: path
      value: $inputs.assetID
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      downloadUri: $response.body#/downloadUri
      resolvedAssetID: $response.body#/assetID
  - stepId: deleteAsset
    description: >-
      Delete the asset from the platform now that its download URI has been
      resolved. A 204 confirms the asset was removed.
    operationId: deleteAsset
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: assetID
      in: path
      value: $inputs.assetID
    successCriteria:
    - condition: $statusCode == 204
  outputs:
    downloadUri: $steps.getDownloadUri.outputs.downloadUri
    deletedAssetID: $steps.getDownloadUri.outputs.resolvedAssetID

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/adobe-download-and-cleanup-asset-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.