Fastly · Arazzo Workflow

Fastly Bulk Update Dictionary Items

Version 1.0.0

Resolve a dictionary by name, then create, update, upsert, and delete items in one batch.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CDNEdge CloudEdge ComputeWebAssemblySecurityArtificial IntelligenceObservabilityAsyncAPIStreamingWebhookLoggingArazzoWorkflows

Provider

fastly

Workflows

bulk-update-dictionary-items
Look up a dictionary by name and apply a batch of item operations.
Resolves the dictionary by name to get its id, then performs a bulk update that can create, update, upsert, and delete items in the same request.
2 steps inputs: apiToken, dictionaryName, items, serviceId, versionId outputs: dictionaryId, status
1
getDictionary
Resolve the dictionary container by name to obtain its id.
2
bulkUpdate
Apply the batch of create, update, upsert, and delete item operations.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Fastly Bulk Update Dictionary Items
  summary: Resolve a dictionary by name, then create, update, upsert, and delete items in one batch.
  description: >-
    Synchronizes the contents of an edge dictionary in a single call. The
    workflow resolves the dictionary container by name on a service version to
    obtain its id, then submits a batch of item operations (create, update,
    upsert, delete) against that dictionary. 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: dictionaryApi
  url: ../openapi/fastly-dictionary-api-openapi.yml
  type: openapi
- name: dictionaryItemApi
  url: ../openapi/fastly-dictionary-item-api-openapi.yml
  type: openapi
workflows:
- workflowId: bulk-update-dictionary-items
  summary: Look up a dictionary by name and apply a batch of item operations.
  description: >-
    Resolves the dictionary by name to get its id, then performs a bulk update
    that can create, update, upsert, and delete items in the same request.
  inputs:
    type: object
    required:
    - apiToken
    - serviceId
    - versionId
    - dictionaryName
    - items
    properties:
      apiToken:
        type: string
        description: The Fastly API token used to authenticate requests.
      serviceId:
        type: string
        description: The alphanumeric identifier of the service.
      versionId:
        type: integer
        description: The version number the dictionary belongs to.
      dictionaryName:
        type: string
        description: The name of the dictionary to synchronize.
      items:
        type: array
        description: A list of item operations (op, item_key, item_value).
        items:
          type: object
  steps:
  - stepId: getDictionary
    description: Resolve the dictionary container by name to obtain its id.
    operationId: getDictionary
    parameters:
    - name: Fastly-Key
      in: header
      value: $inputs.apiToken
    - name: service_id
      in: path
      value: $inputs.serviceId
    - name: version_id
      in: path
      value: $inputs.versionId
    - name: dictionary_name
      in: path
      value: $inputs.dictionaryName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      dictionaryId: $response.body#/id
  - stepId: bulkUpdate
    description: Apply the batch of create, update, upsert, and delete item operations.
    operationId: bulkUpdateDictionaryItems
    parameters:
    - name: Fastly-Key
      in: header
      value: $inputs.apiToken
    - name: service_id
      in: path
      value: $inputs.serviceId
    - name: dictionary_id
      in: path
      value: $steps.getDictionary.outputs.dictionaryId
    requestBody:
      contentType: application/json
      payload:
        items: $inputs.items
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
  outputs:
    dictionaryId: $steps.getDictionary.outputs.dictionaryId
    status: $steps.bulkUpdate.outputs.status

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/fastly-bulk-update-dictionary-items-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.