Adobe Creative Cloud · Arazzo Workflow

Adobe Creative Cloud PDF Compress and Cleanup

Version 1.0.0

Upload a PDF, compress it, retrieve the result, then delete the temporary source asset.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Ai MlCloudCreativeDesignDocumentsPhotographySoftware-as-a-ServiceVideoArazzoWorkflows

Provider

adobe-creative-cloud

Workflows

pdf-compress-and-cleanup
Compress an uploaded PDF, fetch the result, and delete the source asset.
Creates an upload asset, submits a compression job, retrieves the compressed result download URI, and deletes the temporary source asset.
4 steps inputs: accessToken, apiKey, compressionLevel, resultAssetID outputs: downloadUri, jobLocation, sourceAssetID
1
createUploadAsset
Create an upload asset for the source PDF, obtaining an asset ID and a presigned upload URI.
2
submitCompress
Submit the compress-PDF job referencing the uploaded asset at the requested level. Responds 201 with a Location header for job status.
3
getResultDownloadUri
Retrieve the presigned download URI for the compressed result asset once the job has completed.
4
deleteSourceAsset
Delete the temporary source asset now that the compressed result has been retrieved.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Adobe Creative Cloud PDF Compress and Cleanup
  summary: Upload a PDF, compress it, retrieve the result, then delete the temporary source asset.
  description: >-
    Compresses an Adobe PDF and tidies up afterward. The workflow creates an
    upload asset for the source PDF, submits the compress-PDF job at the
    requested compression level, and captures the 201 Location header pointing
    at the opaque job status URL. That status URL is not modeled as an
    operation in the description, so once the job has completed the workflow
    retrieves a presigned download URI for the compressed result asset and then
    deletes the temporary source asset to free storage. Every step spells out
    its request inline, including the bearer token and x-api-key, so the flow
    can be read and run without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: assetsApi
  url: ../openapi/adobe-creative-cloud-assets-api-openapi.yml
  type: openapi
- name: pdfOperationsApi
  url: ../openapi/adobe-creative-cloud-pdf-operations-api-openapi.yml
  type: openapi
workflows:
- workflowId: pdf-compress-and-cleanup
  summary: Compress an uploaded PDF, fetch the result, and delete the source asset.
  description: >-
    Creates an upload asset, submits a compression job, retrieves the
    compressed result download URI, and deletes the temporary source asset.
  inputs:
    type: object
    required:
    - accessToken
    - apiKey
    - resultAssetID
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token from the Adobe IMS token endpoint.
      apiKey:
        type: string
        description: Client ID (x-api-key) from the Adobe Developer Console.
      compressionLevel:
        type: string
        description: Compression level (LOW, MEDIUM, or HIGH).
        default: MEDIUM
      resultAssetID:
        type: string
        description: Asset ID of the compressed result asset to fetch a download URI for.
  steps:
  - stepId: createUploadAsset
    description: >-
      Create an upload asset for the source PDF, obtaining an asset ID and a
      presigned upload URI.
    operationId: createAsset
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        mediaType: application/pdf
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      assetID: $response.body#/assetID
      uploadUri: $response.body#/uploadUri
  - stepId: submitCompress
    description: >-
      Submit the compress-PDF job referencing the uploaded asset at the
      requested level. Responds 201 with a Location header for job status.
    operationId: compressPdf
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        assetID: $steps.createUploadAsset.outputs.assetID
        compressionLevel: $inputs.compressionLevel
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      jobLocation: $response.headers.Location
  - stepId: getResultDownloadUri
    description: >-
      Retrieve the presigned download URI for the compressed result asset once
      the job has completed.
    operationId: getAsset
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: assetID
      in: path
      value: $inputs.resultAssetID
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      downloadUri: $response.body#/downloadUri
  - stepId: deleteSourceAsset
    description: >-
      Delete the temporary source asset now that the compressed result has been
      retrieved.
    operationId: deleteAsset
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: assetID
      in: path
      value: $steps.createUploadAsset.outputs.assetID
    successCriteria:
    - condition: $statusCode == 204
  outputs:
    sourceAssetID: $steps.createUploadAsset.outputs.assetID
    jobLocation: $steps.submitCompress.outputs.jobLocation
    downloadUri: $steps.getResultDownloadUri.outputs.downloadUri

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-creative-cloud-pdf-compress-and-cleanup-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.