webflow.deleteCustomFonts deletes a batch of custom fonts from one site.
Example
automations/webflow-delete-custom-fonts.automation.ts
Inputs
Every input accepts a compatible signal. This action requires thesites:write OAuth scope.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Deletes up to 100 custom fonts from a Webflow site.
webflow.deleteCustomFonts deletes a batch of custom fonts from one site.
import { automation, onDashboardRun } from "automate.ax"
import { webflow } from "automate.ax/webflow"
export default automation("Delete custom fonts", () => {
onDashboardRun({ title: "Delete custom fonts" })
webflow.deleteCustomFonts({
siteId: "site-id",
items: [{ id: "font-id" }],
})
})
sites:write OAuth scope.
| Field | Type | Required | Description |
|---|---|---|---|
siteId | string | Yes | Webflow site ID. |
items | { id: string }[] | Yes | From 1 through 100 custom-font IDs. |
| Field | Type | Description |
|---|---|---|
deleted | { id: string }[] | Deleted font IDs. |
failed | { id: string; msg: string; name: string }[] | Per-font failures. |