Adobe Premiere Pro · Arazzo Workflow

Adobe Premiere Add Element to Creative Cloud Library

Version 1.0.0

Create a library, add an element to it, then read the element back.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AdobeAutomationCreative CloudMediaPremiere ProVideo EditingVideo ProductionArazzoWorkflows

Provider

adobe-premiere

Workflows

add-element-to-library
Provision a library and add a typed element, then verify the element.
Creates a new library, captures its id, creates an element of the supplied type and name inside that library, and finally reads the element back to confirm creation and surface its representations.
3 steps inputs: accessToken, elementName, elementType, libraryName outputs: elementId, elementType, libraryId
1
createLibrary
Create the library that will hold the new element.
2
createElement
Add a typed element to the newly created library using the supplied name and type.
3
getElement
Read the created element back to confirm it persisted and to expose its representations.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Adobe Premiere Add Element to Creative Cloud Library
  summary: Create a library, add an element to it, then read the element back.
  description: >-
    A three-step authoring flow for the Adobe Creative Cloud Libraries API used
    by Premiere Pro. The workflow creates a new library, adds a typed element
    (color, graphic, video, or other supported type) to that library, and then
    fetches the created element by id to confirm it persisted and to expose its
    representations. 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: elementsApi
  url: ../openapi/adobe-premiere-elements-api-openapi.yml
  type: openapi
- name: librariesApi
  url: ../openapi/adobe-premiere-libraries-api-openapi.yml
  type: openapi
workflows:
- workflowId: add-element-to-library
  summary: Provision a library and add a typed element, then verify the element.
  description: >-
    Creates a new library, captures its id, creates an element of the supplied
    type and name inside that library, and finally reads the element back to
    confirm creation and surface its representations.
  inputs:
    type: object
    required:
    - accessToken
    - libraryName
    - elementName
    - elementType
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token for the Creative Cloud Libraries API.
      libraryName:
        type: string
        description: Name to assign to the new Creative Cloud Library.
      elementName:
        type: string
        description: Display name for the new element.
      elementType:
        type: string
        description: >-
          Element type. One of color, characterstyle, brushstyle, graphic,
          pattern, or video.
  steps:
  - stepId: createLibrary
    description: Create the library that will hold the new element.
    operationId: createLibrary
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.libraryName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      libraryId: $response.body#/id
  - stepId: createElement
    description: >-
      Add a typed element to the newly created library using the supplied name
      and type.
    operationId: createLibraryElement
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: libraryId
      in: path
      value: $steps.createLibrary.outputs.libraryId
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.elementName
        type: $inputs.elementType
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      elementId: $response.body#/id
  - stepId: getElement
    description: >-
      Read the created element back to confirm it persisted and to expose its
      representations.
    operationId: getLibraryElement
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: libraryId
      in: path
      value: $steps.createLibrary.outputs.libraryId
    - name: elementId
      in: path
      value: $steps.createElement.outputs.elementId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      elementId: $response.body#/id
      elementName: $response.body#/name
      elementType: $response.body#/type
      representations: $response.body#/representations
  outputs:
    libraryId: $steps.createLibrary.outputs.libraryId
    elementId: $steps.getElement.outputs.elementId
    elementType: $steps.getElement.outputs.elementType

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-premiere-add-element-to-library-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.