Postman · Arazzo Workflow

Postman Tag a Collection for Governance

Version 1.0.0

Create a collection, apply governance tags to it, and read the tags back.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AI Agent BuilderAI AgentsAPI CatalogAPI ClientAPI DesignAPI DevelopmentAPI DocumentationAPI GovernanceAPI LifecycleAPI MonitoringAPI NetworkAPI PlatformAPI TestingAudit LogsAutomationCI/CDCollaborationCollectionComplianceDiscoveryEnvironmentsFlowsGraphQLgRPCHTTPInsightsMCPMCP GeneratorMock ServersMockingMonitorsNewmanOpenAPIPlatformPrivate API NetworkPublic API NetworkSecret ScanningSpec HubSpecificationsSSOTestingVaultWebSocketWorkflowsWorkspacesArazzoWorkflows

Provider

postman

Workflows

tag-collection
Create a collection and govern it with tags.
Creates a collection, replaces its tag set with the supplied governance tags, and reads the tags back to confirm.
3 steps inputs: collectionName, tags, workspace outputs: collectionId, tags
1
createCollection
Create the collection that will be tagged.
2
setTags
Replace the collection's tags with the supplied governance tags.
3
getTags
Read the collection's tags back to confirm the governance labels.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Postman Tag a Collection for Governance
  summary: Create a collection, apply governance tags to it, and read the tags back.
  description: >-
    Tags drive governance by labeling assets with domain, lifecycle, or
    compliance metadata. This workflow creates a collection, applies a set of
    tags to it, and reads the tags back to confirm them. Each step spells out
    its request inline so the flow can be read and executed without opening the
    underlying OpenAPI descriptions.
  version: 1.0.0
sourceDescriptions:
- name: collectionsApi
  url: ../openapi/postman-collections-api-openapi.yml
  type: openapi
- name: tagsApi
  url: ../openapi/postman-tags-api-openapi.yml
  type: openapi
workflows:
- workflowId: tag-collection
  summary: Create a collection and govern it with tags.
  description: >-
    Creates a collection, replaces its tag set with the supplied governance
    tags, and reads the tags back to confirm.
  inputs:
    type: object
    required:
    - collectionName
    - tags
    properties:
      collectionName:
        type: string
        description: The name of the collection to create and tag.
      tags:
        type: array
        description: The tags to apply, each an object with a lowercase hyphenated slug.
        items:
          type: object
      workspace:
        type: string
        description: Optional workspace ID to create the collection in.
  steps:
  - stepId: createCollection
    description: >-
      Create the collection that will be tagged.
    operationId: createCollection
    parameters:
    - name: workspace
      in: query
      value: $inputs.workspace
    requestBody:
      contentType: application/json
      payload:
        collection:
          info:
            name: $inputs.collectionName
            schema: https://schema.getpostman.com/json/collection/v2.1.0/collection.json
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      collectionId: $response.body#/collection/id
  - stepId: setTags
    description: >-
      Replace the collection's tags with the supplied governance tags.
    operationId: updateEntityTags
    parameters:
    - name: entityType
      in: path
      value: collections
    - name: entityId
      in: path
      value: $steps.createCollection.outputs.collectionId
    requestBody:
      contentType: application/json
      payload:
        tags: $inputs.tags
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      appliedTags: $response.body#/tags
  - stepId: getTags
    description: >-
      Read the collection's tags back to confirm the governance labels.
    operationId: getEntityTags
    parameters:
    - name: entityType
      in: path
      value: collections
    - name: entityId
      in: path
      value: $steps.createCollection.outputs.collectionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      tags: $response.body#/tags
  outputs:
    collectionId: $steps.createCollection.outputs.collectionId
    tags: $steps.getTags.outputs.tags

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/postman-tag-collection-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.