JFrog Artifactory · Arazzo Workflow

Artifactory Deploy, Tag, and Search Artifact

Version 1.0.0

Deploy an artifact, attach metadata properties to it, then find it by property.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ArtifactsDevOpsCI/CDdocker-registryMavenPackage ManagementRepositoryArazzoWorkflows

Provider

artifactory

Workflows

deploy-tag-and-search-artifact
Deploy an artifact, set properties on it, and find it via property search.
Uploads an artifact, attaches a property to the deployed item, and then issues a property search scoped to the repository to verify discoverability.
3 steps inputs: accessToken, artifactContent, itemPath, propertyString, repoKey outputs: downloadUri, searchResults
1
deployArtifact
Upload the artifact content to the requested repository path.
2
setProperties
Attach the supplied metadata properties to the deployed item so it can be located by property search.
3
searchByProperty
Run a property search scoped to the repository to confirm the freshly tagged artifact is discoverable.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Artifactory Deploy, Tag, and Search Artifact
  summary: Deploy an artifact, attach metadata properties to it, then find it by property.
  description: >-
    A metadata-driven JFrog Artifactory flow. The workflow deploys an artifact
    to a repository path, sets descriptive properties on the deployed item, and
    then runs a property search to confirm the artifact is discoverable by the
    metadata that was just attached. 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: artifactsStorageApi
  url: ../openapi/artifactory-artifacts-storage-api-openapi.yml
  type: openapi
- name: searchApi
  url: ../openapi/artifactory-search-api-openapi.yml
  type: openapi
workflows:
- workflowId: deploy-tag-and-search-artifact
  summary: Deploy an artifact, set properties on it, and find it via property search.
  description: >-
    Uploads an artifact, attaches a property to the deployed item, and then
    issues a property search scoped to the repository to verify discoverability.
  inputs:
    type: object
    required:
    - accessToken
    - repoKey
    - itemPath
    - artifactContent
    - propertyString
    properties:
      accessToken:
        type: string
        description: Bearer access token for authenticating with Artifactory.
      repoKey:
        type: string
        description: The repository key the artifact lives in.
      itemPath:
        type: string
        description: The path within the repository to deploy and tag.
      artifactContent:
        type: string
        description: The raw artifact bytes to deploy.
      propertyString:
        type: string
        description: Properties to set in key1=value1;key2=value2 format.
  steps:
  - stepId: deployArtifact
    description: Upload the artifact content to the requested repository path.
    operationId: deployArtifact
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: repoKey
      in: path
      value: $inputs.repoKey
    - name: itemPath
      in: path
      value: $inputs.itemPath
    requestBody:
      contentType: application/octet-stream
      payload: $inputs.artifactContent
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      deployedPath: $response.body#/path
      downloadUri: $response.body#/downloadUri
  - stepId: setProperties
    description: >-
      Attach the supplied metadata properties to the deployed item so it can be
      located by property search.
    operationId: setItemProperties
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: repoKey
      in: path
      value: $inputs.repoKey
    - name: itemPath
      in: path
      value: $inputs.itemPath
    - name: properties
      in: query
      value: $inputs.propertyString
    - name: recursive
      in: query
      value: 0
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      propertiesStatus: $statusCode
  - stepId: searchByProperty
    description: >-
      Run a property search scoped to the repository to confirm the freshly
      tagged artifact is discoverable.
    operationId: searchByProperty
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: repos
      in: query
      value: $inputs.repoKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      results: $response.body#/results
  outputs:
    downloadUri: $steps.deployArtifact.outputs.downloadUri
    searchResults: $steps.searchByProperty.outputs.results

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/artifactory-deploy-tag-search-artifact-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.