Etsy · Arazzo Workflow

Etsy Update Shop Storefront

Version 1.0.0

Read a shop, then update its storefront messaging fields.

1 workflow 1 source API 1 provider
View Spec View on GitHub MarketplaceE-CommerceHandmadeListingsOrderPaymentsReviewsShippingTaxonomyAuthenticationArazzoWorkflows

Provider

etsy

Workflows

update-shop-storefront
Read a shop and update its storefront messaging.
Reads the shop record, then updates its title, announcement and sale messages.
2 steps inputs: accessToken, announcement, apiKey, saleMessage, shopId, title outputs: announcement, shopId, title
1
readShop
Read the current shop record to confirm it exists.
2
updateStorefront
Update the shop's storefront messaging fields.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Etsy Update Shop Storefront
  summary: Read a shop, then update its storefront messaging fields.
  description: >-
    A storefront-maintenance flow. It reads the current shop record to confirm
    it exists, then updates the shop's storefront messaging — title,
    announcement and sale messages. Every step spells out its request inline —
    including the x-api-key and OAuth bearer headers — so the flow can be read
    and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: shopApi
  url: ../openapi/etsy-shop-api-openapi.yml
  type: openapi
workflows:
- workflowId: update-shop-storefront
  summary: Read a shop and update its storefront messaging.
  description: >-
    Reads the shop record, then updates its title, announcement and sale
    messages.
  inputs:
    type: object
    required:
    - apiKey
    - accessToken
    - shopId
    properties:
      apiKey:
        type: string
        description: The Etsy app API key sent in the x-api-key header.
      accessToken:
        type: string
        description: The OAuth 2.0 bearer token for the authenticated seller.
      shopId:
        type: integer
        description: The unique positive non-zero numeric ID for the Etsy shop.
      title:
        type: string
        description: A brief heading string for the shop's main page.
      announcement:
        type: string
        description: An announcement string shown on the shop's homepage.
      saleMessage:
        type: string
        description: A message sent to users who complete a purchase.
  steps:
  - stepId: readShop
    description: Read the current shop record to confirm it exists.
    operationId: getShop
    parameters:
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: shop_id
      in: path
      value: $inputs.shopId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      shopId: $response.body#/shop_id
      shopName: $response.body#/shop_name
  - stepId: updateStorefront
    description: Update the shop's storefront messaging fields.
    operationId: updateShop
    parameters:
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: shop_id
      in: path
      value: $steps.readShop.outputs.shopId
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        title: $inputs.title
        announcement: $inputs.announcement
        sale_message: $inputs.saleMessage
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      shopId: $response.body#/shop_id
      title: $response.body#/title
      announcement: $response.body#/announcement
  outputs:
    shopId: $steps.updateStorefront.outputs.shopId
    title: $steps.updateStorefront.outputs.title
    announcement: $steps.updateStorefront.outputs.announcement

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/etsy-update-shop-storefront-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.