webflow.deleteCustomFont permanently deletes one custom font from a site.
Example
automations/webflow-delete-custom-font.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 one custom font from a Webflow site.
webflow.deleteCustomFont permanently deletes one custom font from a site.
import { automation, onDashboardRun } from "automate.ax"
import { webflow } from "automate.ax/webflow"
export default automation("Delete custom font", () => {
onDashboardRun({ title: "Delete custom font" })
webflow.deleteCustomFont({ siteId: "site-id", fontId: "font-id" })
})
sites:write OAuth scope.
| Field | Type | Required | Description |
|---|---|---|---|
siteId | string | Yes | Webflow site ID. |
fontId | string | Yes | Custom-font ID. |