client.token.authorized_by()
-
-
-
Information about the Authorized User
Required Scope |
authorized_user:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.token.authorized_by()
-
-
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.token.introspect()
-
-
-
Information about the authorization token
Access to this endpoint requires a bearer token from a Data Client App.
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.token.introspect()
-
-
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.create(...)
-
-
-
Create a site. This endpoint requires an Enterprise workspace.
Required scope |
workspace:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.create( workspace_id="580e63e98c9a982ac9b8b741", name="The Hitchhiker's Guide to the Galaxy", )
-
-
-
workspace_id:
str
— Unique identifier for a Workspace
-
name:
str
— The name of the site
-
template_name:
typing.Optional[str]
— The workspace or marketplace template to use
-
parent_folder_id:
typing.Optional[str]
— MegaDodo Publications - Potential Book Ideas
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.list()
-
-
-
List of all sites the provided access token is able to access.
Required scope |
sites:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.list()
-
-
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.get(...)
-
-
-
Get details of a site.
Required scope |
sites:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.get( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.delete(...)
-
-
-
Delete a site. This endpoint requires an Enterprise workspace.
Required scope |
sites:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.delete( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.update(...)
-
-
-
Update a site. This endpoint requires an Enterprise workspace.
Required scope |
sites:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.update( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
name:
typing.Optional[str]
— The name of the site
-
parent_folder_id:
typing.Optional[str]
— The parent folder ID of the site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.get_custom_domain(...)
-
-
-
Get a list of all custom domains related to site.
Required scope |
sites:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.get_custom_domain( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.publish(...)
-
-
-
Publishes a site to one or more more domains.
This endpoint has a limit of one successful publish queue per minute.
Required scope |
sites:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.publish( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
custom_domains:
typing.Optional[typing.Sequence[str]]
— Array of Custom Domain IDs to publish
-
publish_to_webflow_subdomain:
typing.Optional[bool]
— Choice of whether to publish to the default Webflow Subdomain
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.list(...)
-
-
-
List of all Collections within a Site.
Required scope |
cms:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.list( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.create(...)
-
-
-
Create a Collection for a site.
Required scope |
cms:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.create( site_id="580e63e98c9a982ac9b8b741", display_name="Blog Posts", singular_name="Blog Post", slug="posts", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
display_name:
str
— Name of the collection. Each collection name must be distinct.
-
singular_name:
str
— Singular name of each item.
-
slug:
typing.Optional[str]
— Part of a URL that identifier
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.get(...)
-
-
-
Get the full details of a collection from its ID.
Required scope |
cms:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.get( collection_id="580e63fc8c9a982ac9b8b745", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.delete(...)
-
-
-
Delete a collection using its ID.
Required scope |
cms:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.delete( collection_id="580e63fc8c9a982ac9b8b745", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.pages.list(...)
-
-
-
List of all pages for a site.
Required scope |
pages:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.pages.list( site_id="580e63e98c9a982ac9b8b741", locale_id="65427cf400e02b306eaa04a0", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
locale_id:
typing.Optional[str]
— Unique identifier for a specific locale. Applicable, when using localization.
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.pages.get_metadata(...)
-
-
-
Get metadata information for a single page.
Required scope |
pages:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.pages.get_metadata( page_id="63c720f9347c2139b248e552", locale_id="65427cf400e02b306eaa04a0", )
-
-
-
page_id:
str
— Unique identifier for a Page
-
locale_id:
typing.Optional[str]
— Unique identifier for a specific locale. Applicable, when using localization.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.pages.update_page_settings(...)
-
-
-
Update Page-level metadata, including SEO and Open Graph fields.
Required scope |
pages:write
-
-
-
import datetime from webflow import PageOpenGraph, PageSeo, Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.pages.update_page_settings( page_id="63c720f9347c2139b248e552", locale_id="65427cf400e02b306eaa04a0", id="6596da6045e56dee495bcbba", site_id="6258612d1ee792848f805dcf", title="Guide to the Galaxy", slug="guide-to-the-galaxy", created_on=datetime.datetime.fromisoformat( "2024-03-11 10:42:00+00:00", ), last_updated=datetime.datetime.fromisoformat( "2024-03-11 10:42:42+00:00", ), archived=False, draft=False, can_branch=True, is_branch=False, seo=PageSeo( title="The Ultimate Hitchhiker's Guide to the Galaxy", description="Everything you need to know about the galaxy, from avoiding Vogon poetry to the importance of towels.", ), open_graph=PageOpenGraph( title="Explore the Cosmos with The Ultimate Guide", title_copied=False, description="Dive deep into the mysteries of the universe with your guide to everything galactic.", description_copied=False, ), page_locale_id="653fd9af6a07fc9cfd7a5e57", published_path="/en-us/guide-to-the-galaxy", )
-
-
-
page_id:
str
— Unique identifier for a Page
-
id:
str
— Unique identifier for the Page
-
locale_id:
typing.Optional[str]
— Unique identifier for a specific locale. Applicable, when using localization.
-
site_id:
typing.Optional[str]
— Unique identifier for the Site
-
title:
typing.Optional[str]
— Title of the Page
-
slug:
typing.Optional[str]
— slug of the Page (derived from title)
-
parent_id:
typing.Optional[str]
— Identifier of the parent folder
-
collection_id:
typing.Optional[str]
— Unique identifier for a linked Collection, value will be null if the Page is not part of a Collection.
-
created_on:
typing.Optional[dt.datetime]
— The date the Page was created
-
last_updated:
typing.Optional[dt.datetime]
— The date the Page was most recently updated
-
archived:
typing.Optional[bool]
— Whether the Page has been archived
-
draft:
typing.Optional[bool]
— Whether the Page is a draft
-
can_branch:
typing.Optional[bool]
— Indicates whether the Page supports Page Branching
-
is_branch:
typing.Optional[bool]
— Indicates whether the Page is a Branch of another Page Page Branching
-
is_members_only:
typing.Optional[bool]
— Indicates whether the Page is restricted by Memberships Controls
-
seo:
typing.Optional[PageSeo]
— SEO-related fields for the Page
-
open_graph:
typing.Optional[PageOpenGraph]
— Open Graph fields for the Page
-
page_locale_id:
typing.Optional[str]
— Unique ID of the page locale
-
published_path:
typing.Optional[str]
— Relative path of the published page URL
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.pages.get_content(...)
-
-
-
Get static content from a static page. This includes text nodes, image nodes and component instances. To retrieve the contents of components in the page use the get component content endpoint.
If you do not provide a Locale ID in your request, the response will return any content that can be localized from the Primary locale.
Required scope |
pages:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.pages.get_content( page_id="63c720f9347c2139b248e552", locale_id="65427cf400e02b306eaa04a0", )
-
-
-
page_id:
str
— Unique identifier for a Page
-
locale_id:
typing.Optional[str]
— Unique identifier for a specific locale. Applicable, when using localization.
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.pages.update_static_content(...)
-
-
-
This endpoint updates content on a static page in secondary locales. It supports updating up to 1000 nodes in a single request.
Before making updates:
- Use the get page content endpoint to identify available content nodes and their types
- If the page has component instances, retrieve the component's properties that you'll override using the get component properties endpoint
Required scope |
pages:write
-
-
-
from webflow import ( ComponentInstanceNodePropertyOverridesWrite, ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem, TextNodeWrite, Webflow, ) client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.pages.update_static_content( page_id="63c720f9347c2139b248e552", locale_id="localeId", nodes=[ TextNodeWrite( node_id="a245c12d-995b-55ee-5ec7-aa36a6cad623", text="<h1>The Hitchhiker's Guide to the Galaxy</h1>", ), TextNodeWrite( node_id="a245c12d-995b-55ee-5ec7-aa36a6cad627", text="<div><h3>Don't Panic!</h3><p>Always know where your towel is.</p></div>", ), ComponentInstanceNodePropertyOverridesWrite( node_id="a245c12d-995b-55ee-5ec7-aa36a6cad629", property_overrides=[ ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem( property_id="7dd14c08-2e96-8d3d-2b19-b5c03642a0f0", text="<div><h1>Time is an <em>illusion</em></h1></div>", ), ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem( property_id="7dd14c08-2e96-8d3d-2b19-b5c03642a0f1", text="Life, the Universe and Everything", ), ], ), ], )
-
-
-
page_id:
str
— Unique identifier for a Page
-
locale_id:
str
— The locale identifier.
-
nodes:
typing.Sequence[PageDomWriteNodesItem]
— List of DOM Nodes with the new content that will be updated in each node.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.components.list(...)
-
-
-
List of all components for a site.
Required scope |
components:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.components.list( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.components.get_content(...)
-
-
-
Get static content from a component definition. This includes text nodes, image nodes and nested component instances. To retrieve dynamic content set by component properties, use the get component properties endpoint.
If you do not provide a Locale ID in your request, the response will return any content that can be localized from the Primary locale.
Required scope |
components:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.components.get_content( site_id="580e63e98c9a982ac9b8b741", component_id="8505ba55-ef72-629e-f85c-33e4b703d48b", locale_id="65427cf400e02b306eaa04a0", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
component_id:
str
— Unique identifier for a Component
-
locale_id:
typing.Optional[str]
— Unique identifier for a specific locale. Applicable, when using localization.
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.components.update_content(...)
-
-
-
This endpoint updates content within a component defintion for secondary locales. It supports updating up to 1000 nodes in a single request.
Before making updates:
- Use the get component content endpoint to identify available content nodes and their types
- If your component definition has a component instance nested within it, retrieve the nested component instance's properties that you'll override using the get component properties endpoint
Required scope |
components:write
-
-
-
from webflow import ( ComponentInstanceNodePropertyOverridesWrite, ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem, TextNodeWrite, Webflow, ) client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.components.update_content( site_id="580e63e98c9a982ac9b8b741", component_id="8505ba55-ef72-629e-f85c-33e4b703d48b", locale_id="65427cf400e02b306eaa04a0", nodes=[ TextNodeWrite( node_id="a245c12d-995b-55ee-5ec7-aa36a6cad623", text="<h1>The Hitchhiker's Guide to the Galaxy</h1>", ), TextNodeWrite( node_id="a245c12d-995b-55ee-5ec7-aa36a6cad627", text="<div><h3>Don't Panic!</h3><p>Always know where your towel is.</p></div>", ), ComponentInstanceNodePropertyOverridesWrite( node_id="a245c12d-995b-55ee-5ec7-aa36a6cad629", property_overrides=[ ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem( property_id="7dd14c08-2e96-8d3d-2b19-b5c03642a0f0", text="<div><h1>Time is an <em>illusion</em></h1></div>", ), ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem( property_id="7dd14c08-2e96-8d3d-2b19-b5c03642a0f1", text="Life, the Universe and Everything", ), ], ), ], )
-
-
-
site_id:
str
— Unique identifier for a Site
-
component_id:
str
— Unique identifier for a Component
-
nodes:
typing.Sequence[ComponentDomWriteNodesItem]
— List of DOM Nodes with the new content that will be updated in each node.
-
locale_id:
typing.Optional[str]
— Unique identifier for a specific locale. Applicable, when using localization.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.components.get_properties(...)
-
-
-
Get the property default values of a component definition.
If you do not provide a Locale ID in your request, the response will return any properties that can be localized from the Primary locale.
Required scope |
components:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.components.get_properties( site_id="580e63e98c9a982ac9b8b741", component_id="8505ba55-ef72-629e-f85c-33e4b703d48b", locale_id="65427cf400e02b306eaa04a0", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
component_id:
str
— Unique identifier for a Component
-
locale_id:
typing.Optional[str]
— Unique identifier for a specific locale. Applicable, when using localization.
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.components.update_properties(...)
-
-
-
Update the property default values of a component definition in a specificed locale.
Before making updates:
- Use the get component properties endpoint to identify available properties
The request requires a secondary locale ID. If a locale is missing, the request will not be processed and will result in an error.
Required scope |
components:write
-
-
-
from webflow import Webflow from webflow.resources.components import ComponentPropertiesWritePropertiesItem client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.components.update_properties( site_id="580e63e98c9a982ac9b8b741", component_id="8505ba55-ef72-629e-f85c-33e4b703d48b", locale_id="65427cf400e02b306eaa04a0", properties=[ ComponentPropertiesWritePropertiesItem( property_id="a245c12d-995b-55ee-5ec7-aa36a6cad623", text="The Hitchhiker’s Guide to the Galaxy", ), ComponentPropertiesWritePropertiesItem( property_id="a245c12d-995b-55ee-5ec7-aa36a6cad627", text="<div><h3>Dont Panic!</h3><p>Always know where your towel is.</p></div>", ), ], )
-
-
-
site_id:
str
— Unique identifier for a Site
-
component_id:
str
— Unique identifier for a Component
-
properties:
typing.Sequence[ComponentPropertiesWritePropertiesItem]
— A list of component properties to update within the specified secondary locale.
-
locale_id:
typing.Optional[str]
— Unique identifier for a specific locale. Applicable, when using localization.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.scripts.list(...)
-
-
-
List of scripts registered to a Site.
In order to use the Custom Code APIs for Sites and Pages, Custom Code Scripts must first be registered to a Site via the
registered_scripts
endpoints, and then applied to a Site or Page using the appropriatecustom_code
endpoints. Additionally, Scripts can be remotely hosted, or registered as inline snippets.Access to this endpoint requires a bearer token from a Data Client App.
Required scope |
custom_code:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.scripts.list( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.scripts.register_hosted(...)
-
-
-
Add a script to a Site's Custom Code registry.
In order to use the Custom Code APIs for Sites and Pages, Custom Code Scripts must first be registered to a Site via the
registered_scripts
endpoints, and then applied to a Site or Page using the appropriatecustom_code
endpoints. Additionally, Scripts can be remotely hosted, or registered as inline snippets.Access to this endpoint requires a bearer token from a Data Client App.
Required scope |
custom_code:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.scripts.register_hosted( site_id="580e63e98c9a982ac9b8b741", hosted_location="hostedLocation", integrity_hash="integrityHash", version="version", display_name="displayName", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
hosted_location:
str
— URI for an externally hosted script location
-
integrity_hash:
str
— Sub-Resource Integrity Hash
-
version:
str
— A Semantic Version (SemVer) string, denoting the version of the script
-
display_name:
str
— User-facing name for the script. Must be between 1 and 50 alphanumeric characters
-
can_copy:
typing.Optional[bool]
— Define whether the script can be copied on site duplication and transfer
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.scripts.register_inline(...)
-
-
-
Add a script to a Site's Custom Code registry. Inline scripts can be between 1 and 2000 characters.
In order to use the Custom Code APIs for Sites and Pages, Custom Code Scripts must first be registered to a Site via the
registered_scripts
endpoints, and then applied to a Site or Page using the appropriatecustom_code
endpoints.Access to this endpoint requires a bearer token from a Data Client App.
Required scope |
custom_code:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.scripts.register_inline( site_id="580e63e98c9a982ac9b8b741", source_code="alert('hello world');", version="0.0.1", display_name="Alert", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
source_code:
str
— The code to be added to the site (to be hosted by Webflow).
-
version:
str
— A Semantic Version (SemVer) string, denoting the version of the script
-
display_name:
str
— User-facing name for the script. Must be between 1 and 50 alphanumeric characters
-
integrity_hash:
typing.Optional[str]
— Sub-Resource Integrity Hash. Only required for externally hosted scripts (passed via hostedLocation)
-
can_copy:
typing.Optional[bool]
— Define whether the script can be copied on site duplication and transfer
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.assets.list(...)
-
-
-
List assets for a given site
Required scope |
assets:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.assets.list( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.assets.create(...)
-
-
-
Create a new asset entry.
This endpoint generates a response with the following information:
uploadUrl
anduploadDetails
. You can use these two properties to upload the file to Amazon s3 by making a POST request to theuploadUrl
with theuploadDetails
object as your header information in the request.Required scope |
assets:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.assets.create( site_id="580e63e98c9a982ac9b8b741", file_name="file.png", file_hash="3c7d87c9575702bc3b1e991f4d3c638e", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
file_name:
str
— File name including file extension. File names must be less than 100 characters.
-
file_hash:
str
— MD5 hash of the file
-
parent_folder:
typing.Optional[str]
— ID of the Asset folder (optional)
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.assets.get(...)
-
-
-
Get an Asset
Required scope |
assets:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.assets.get( asset_id="580e63fc8c9a982ac9b8b745", )
-
-
-
asset_id:
str
— Unique identifier for an Asset on a site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.assets.delete(...)
-
-
-
Delete an Asset
Required Scope:
assets: write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.assets.delete( asset_id="580e63fc8c9a982ac9b8b745", )
-
-
-
asset_id:
str
— Unique identifier for an Asset on a site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.assets.update(...)
-
-
-
Update an Asset
Required scope |
assets:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.assets.update( asset_id="580e63fc8c9a982ac9b8b745", )
-
-
-
asset_id:
str
— Unique identifier for an Asset on a site
-
locale_id:
typing.Optional[str]
— Unique identifier for a specific locale. Applicable, when using localization.
-
display_name:
typing.Optional[str]
— A human readable name for the asset
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.assets.list_folders(...)
-
-
-
List Asset Folders within a given site
Required scope |
assets:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.assets.list_folders( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.assets.create_folder(...)
-
-
-
Create an Asset Folder within a given site
Required scope |
assets:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.assets.create_folder( site_id="580e63e98c9a982ac9b8b741", display_name="my asset folder", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
display_name:
str
— A human readable name for the Asset Folder
-
parent_folder:
typing.Optional[str]
— An (optional) pointer to a parent Asset Folder (or null for root)
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.assets.get_folder(...)
-
-
-
Get details about a specific Asset Folder
Required scope |
assets:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.assets.get_folder( asset_folder_id="6390c49774a71f0e3c1a08ee", )
-
-
-
asset_folder_id:
str
— Unique identifier for an Asset Folder
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.webhooks.list(...)
-
-
-
List all App-created Webhooks registered for a given site
Required scope |
sites:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.webhooks.list( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.webhooks.create(...)
-
-
-
Create a new Webhook.
Limit of 75 registrations per
triggerType
, per site.Access to this endpoint requires a bearer token from a Data Client App. Required scope |
sites:write
-
-
-
import datetime from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.webhooks.create( site_id_="580e63e98c9a982ac9b8b741", id="582266e0cd48de0f0e3c6d8b", trigger_type="form_submission", url="https://webhook.site/7f7f7f7f-7f7f-7f7f-7f7f-7f7f7f7f7f7f", workspace_id="4f4e46fd476ea8c507000001", site_id="562ac0395358780a1f5e6fbd", last_triggered=datetime.datetime.fromisoformat( "2023-02-08 23:59:28+00:00", ), created_on=datetime.datetime.fromisoformat( "2022-11-08 23:59:28+00:00", ), )
-
-
-
site_id_:
str
— Unique identifier for a Site
-
id:
typing.Optional[str]
— Unique identifier for the Webhook registration
-
trigger_type:
typing.Optional[TriggerType]
-
url:
typing.Optional[str]
— URL to send the Webhook payload to
-
workspace_id:
typing.Optional[str]
— Unique identifier for the Workspace the Webhook is registered in
-
site_id:
typing.Optional[str]
— Unique identifier for the Site the Webhook is registered in
-
filter:
typing.Optional[WebhookFilter]
— Only supported for theform_submission
trigger type. Filter for the form you want Webhooks to be sent for.
-
last_triggered:
typing.Optional[dt.datetime]
— Date the Webhook instance was last triggered
-
created_on:
typing.Optional[dt.datetime]
— Date the Webhook registration was created
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.webhooks.get(...)
-
-
-
Get a specific Webhook instance
Required scope:
sites:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.webhooks.get( webhook_id="580e64008c9a982ac9b8b754", )
-
-
-
webhook_id:
str
— Unique identifier for a Webhook
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.webhooks.delete(...)
-
-
-
Remove a Webhook
Required scope:
sites:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.webhooks.delete( webhook_id="580e64008c9a982ac9b8b754", )
-
-
-
webhook_id:
str
— Unique identifier for a Webhook
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.forms.list(...)
-
-
-
List forms for a given site.
Required scope |
forms:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.forms.list( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.forms.get(...)
-
-
-
Get information about a given form.
Required scope |
forms:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.forms.get( form_id="580e63e98c9a982ac9b8b741", )
-
-
-
form_id:
str
— Unique identifier for a Form
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.forms.list_submissions(...)
-
-
-
List form submissions for a given form
Required scope |
forms:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.forms.list_submissions( form_id="580e63e98c9a982ac9b8b741", )
-
-
-
form_id:
str
— Unique identifier for a Form
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.forms.get_submission(...)
-
-
-
Get information about a given form submissio.
Required scope |
forms:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.forms.get_submission( form_submission_id="580e63e98c9a982ac9b8b741", )
-
-
-
form_submission_id:
str
— Unique identifier for a Form Submission
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.forms.update_submission(...)
-
-
-
Update hidden fields on a form submission
Required scope |
forms:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.forms.update_submission( form_submission_id="580e63e98c9a982ac9b8b741", )
-
-
-
form_submission_id:
str
— Unique identifier for a Form Submission
-
form_submission_data:
typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
— An existing hidden field defined on the form schema, and the corresponding value to set
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.users.list(...)
-
-
-
Get a list of users for a site
Required scope |
users:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.users.list( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
sort:
typing.Optional[UsersListRequestSort]
Sort string to use when ordering users
Example(
CreatedOn
,Email
,Status
,LastLogin
,UpdatedOn
).Can be prefixed with a
-
to reverse the sort (ex.-CreatedOn
)
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.users.get(...)
-
-
-
Get a User by ID
Required scope |
users:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.users.get( site_id="580e63e98c9a982ac9b8b741", user_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
user_id:
str
— Unique identifier for a User
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.users.delete(...)
-
-
-
Delete a User by ID
Required scope |
users:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.users.delete( site_id="580e63e98c9a982ac9b8b741", user_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
user_id:
str
— Unique identifier for a User
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.users.update(...)
-
-
-
Update a User by ID
Required scope |
users:write
The
email
andpassword
fields cannot be updated using this endpoint
-
-
-
from webflow import Webflow from webflow.resources.users import UsersUpdateRequestData client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.users.update( site_id="580e63e98c9a982ac9b8b741", user_id="580e63e98c9a982ac9b8b741", data=UsersUpdateRequestData( name="Some One", accept_privacy=False, accept_communications=False, ), access_groups=["webflowers", "platinum", "free-tier"], )
-
-
-
site_id:
str
— Unique identifier for a Site
-
user_id:
str
— Unique identifier for a User
-
data:
typing.Optional[UsersUpdateRequestData]
-
access_groups:
typing.Optional[typing.Sequence[str]]
— An array of access group slugs. Access groups are assigned to the user as typeadmin
and the user remains in the group until removed.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.users.invite(...)
-
-
-
Create and invite a user with an email address.
The user will be sent and invite via email, which they will need to accept in order to join paid any paid access group.
Required scope |
users:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.users.invite( site_id="580e63e98c9a982ac9b8b741", email="[email protected]", access_groups=["webflowers"], )
-
-
-
site_id:
str
— Unique identifier for a Site
-
email:
str
— Email address of user to send invite to
-
access_groups:
typing.Optional[typing.Sequence[str]]
— An array of access group slugs. Access groups are assigned to the user as typeadmin
and the user remains in the group until removed.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.access_groups.list(...)
-
-
-
Get a list of access groups for a site
Required scope |
users:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.access_groups.list( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
sort:
typing.Optional[AccessGroupsListRequestSort]
Sort string to use when ordering access groups Can be prefixed with a
-
to reverse the sort (ex.-CreatedOn
)
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.products.list(...)
-
-
-
Retrieve all products for a site.
Use
limit
andoffset
to page through all products with subsequent requests. All SKUs for each product will also be fetched and returned. Thelimit
,offset
andtotal
values represent Products only and do not include any SKUs.Required scope |
ecommerce:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.products.list( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.products.create(...)
-
-
-
Create a new product and SKU.
When you create a product, you will always create a SKU, since a Product Item must have, at minimum, a single SKU.
To create a Product with multiple SKUs - for example a T-shirt in sizes small, medium and large:
- Create parameters in
sku-properties
, also known as product options and variants.. - A single
sku-property
would becolor
. Within thecolor
property, list the various colors of T-shirts as an array ofenum
values:royal-blue
,crimson-red
, andforrest-green
. - Once, you've created a Product and its
sku-properties
withenum
values, Webflow will create a default SKU, which will automatically be a combination of the firstsku-properties
you've created. - In our example, the default SKU will be a Royal Blue T-Shirt, because our first
enum
of our Colorsku-property
is Royal Blue. - After you've created your product, you can create additional SKUs using the Create SKU endpoint.
Upon creation, the default product type will be
Advanced
, which ensures all Product and SKU fields will be shown to users in the Designer.Required scope |
ecommerce:write
- Create parameters in
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.products.create( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
publish_status:
typing.Optional[PublishStatus]
-
product:
typing.Optional[Product]
-
sku:
typing.Optional[Sku]
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.products.get(...)
-
-
-
Retrieve a single product by its ID. All of its SKUs will also be retrieved.
Required scope |
ecommerce:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.products.get( site_id="580e63e98c9a982ac9b8b741", product_id="580e63fc8c9a982ac9b8b745", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
product_id:
str
— Unique identifier for a Product
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.products.update(...)
-
-
-
Update an existing Product.
Updating an existing Product will set the product type to
Advanced
, which ensures all Product and SKU fields will be shown to users in the Designer.Required scope |
ecommerce:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.products.update( site_id="580e63e98c9a982ac9b8b741", product_id="580e63fc8c9a982ac9b8b745", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
product_id:
str
— Unique identifier for a Product
-
publish_status:
typing.Optional[PublishStatus]
-
product:
typing.Optional[Product]
-
sku:
typing.Optional[Sku]
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.products.create_sku(...)
-
-
-
Create additional SKUs to manage every option and variant of your Product.
Creating SKUs through the API will set the product type to
Advanced
, which ensures all Product and SKU fields will be shown to users in the Designer.Required scope |
ecommerce:write
-
-
-
from webflow import Sku, Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.products.create_sku( site_id="580e63e98c9a982ac9b8b741", product_id="580e63fc8c9a982ac9b8b745", skus=[Sku()], )
-
-
-
site_id:
str
— Unique identifier for a Site
-
product_id:
str
— Unique identifier for a Product
-
skus:
typing.Sequence[Sku]
— An array of the SKU data your are adding
-
publish_status:
typing.Optional[PublishStatus]
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.products.update_sku(...)
-
-
-
Update a specified SKU.
Updating an existing SKU will set the Product type to
Advanced
, which ensures all Product and SKU fields will be shown to users in the Designer.Required scope |
ecommerce:write
-
-
-
from webflow import Sku, Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.products.update_sku( site_id="580e63e98c9a982ac9b8b741", product_id="580e63fc8c9a982ac9b8b745", sku_id="5e8518516e147040726cc415", sku=Sku(), )
-
-
-
site_id:
str
— Unique identifier for a Site
-
product_id:
str
— Unique identifier for a Product
-
sku_id:
str
— Unique identifier for a SKU
-
sku:
Sku
-
publish_status:
typing.Optional[PublishStatus]
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.orders.list(...)
-
-
-
List all orders created for a given site.
Required scope |
ecommerce:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.orders.list( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
status:
typing.Optional[OrdersListRequestStatus]
— Filter the orders by status
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.orders.get(...)
-
-
-
Retrieve a single product by its ID. All of its SKUs will also be retrieved.
Required scope |
ecommerce:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.orders.get( site_id="580e63e98c9a982ac9b8b741", order_id="5e8518516e147040726cc415", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
order_id:
str
— Unique identifier for an Order
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.orders.update(...)
-
-
-
This API lets you update the fields,
comment
,shippingProvider
, and/orshippingTracking
for a given order. All three fields can be updated simultaneously or independently.Required scope |
ecommerce:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.orders.update( site_id="580e63e98c9a982ac9b8b741", order_id="5e8518516e147040726cc415", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
order_id:
str
— Unique identifier for an Order
-
comment:
typing.Optional[str]
— Arbitrary data for your records
-
shipping_provider:
typing.Optional[str]
— Company or method used to ship order
-
shipping_tracking:
typing.Optional[str]
— Tracking number for order shipment
-
shipping_tracking_url:
typing.Optional[str]
— URL to track order shipment
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.orders.update_fulfill(...)
-
-
-
Updates an order's status to fulfilled
Required scope |
ecommerce:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.orders.update_fulfill( site_id="580e63e98c9a982ac9b8b741", order_id="5e8518516e147040726cc415", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
order_id:
str
— Unique identifier for an Order
-
send_order_fulfilled_email:
typing.Optional[bool]
— Whether or not the Order Fulfilled email should be sent
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.orders.update_unfulfill(...)
-
-
-
Updates an order's status to unfulfilled
Required scope |
ecommerce:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.orders.update_unfulfill( site_id="580e63e98c9a982ac9b8b741", order_id="5e8518516e147040726cc415", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
order_id:
str
— Unique identifier for an Order
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.orders.refund(...)
-
-
-
This API will reverse a Stripe charge and refund an order back to a customer. It will also set the order's status to
refunded
.Required scope |
ecommerce:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.orders.refund( site_id="580e63e98c9a982ac9b8b741", order_id="5e8518516e147040726cc415", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
order_id:
str
— Unique identifier for an Order
-
reason:
typing.Optional[OrdersRefundRequestReason]
— The reason for the refund
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.inventory.list(...)
-
-
-
List the current inventory levels for a particular SKU item.
Required scope |
ecommerce:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.inventory.list( collection_id="580e63fc8c9a982ac9b8b745", item_id="580e64008c9a982ac9b8b754", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
item_id:
str
— Unique identifier for an Item
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.inventory.update(...)
-
-
-
Updates the current inventory levels for a particular SKU item.
Updates may be given in one or two methods, absolutely or incrementally.
- Absolute updates are done by setting
quantity
directly. - Incremental updates are by specifying the inventory delta in
updateQuantity
which is then added to thequantity
stored on the server.
Required scope |
ecommerce:write
- Absolute updates are done by setting
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.inventory.update( collection_id="580e63fc8c9a982ac9b8b745", item_id="580e64008c9a982ac9b8b754", inventory_type="infinite", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
item_id:
str
— Unique identifier for an Item
-
inventory_type:
InventoryUpdateRequestInventoryType
— infinite or finite
-
update_quantity:
typing.Optional[float]
— Adds this quantity to currently store quantity. Can be negative.
-
quantity:
typing.Optional[float]
— Immediately sets quantity to this value.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.ecommerce.get_settings(...)
-
-
-
Retrieve ecommerce settings for a site.
Required scope |
ecommerce:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.ecommerce.get_settings( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.fields.create(...)
-
-
-
Create a custom field in a collection.
Slugs must be all lowercase letters without spaces. If you pass a string with uppercase letters and/or spaces to the "Slug" property, Webflow will convert the slug to lowercase and replace spaces with "-."
Only some field types can be created through the API. This endpoint does not currently support bulk creation.
Required scope |
cms:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.fields.create( collection_id="580e63fc8c9a982ac9b8b745", is_required=False, type="RichText", display_name="Post Body", help_text="Add the body of your post here", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
type:
FieldCreateType
— Choose these appropriate field type for your collection data
-
display_name:
str
— The name of a field
-
is_required:
typing.Optional[bool]
— define whether a field is required in a collection
-
help_text:
typing.Optional[str]
— Additional text to help anyone filling out this field
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.fields.delete(...)
-
-
-
Delete a custom field in a collection. This endpoint does not currently support bulk deletion.
Required scope |
cms:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.fields.delete( collection_id="580e63fc8c9a982ac9b8b745", field_id="580e63fc8c9a982ac9b8b745", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
field_id:
str
— Unique identifier for a Field in a collection
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.fields.update(...)
-
-
-
Update a custom field in a collection.
Required scope |
cms:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.fields.update( collection_id="580e63fc8c9a982ac9b8b745", field_id="580e63fc8c9a982ac9b8b745", is_required=False, display_name="Post Body", help_text="Add the body of your post here", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
field_id:
str
— Unique identifier for a Field in a collection
-
is_required:
typing.Optional[bool]
— Define whether a field is required in a collection
-
display_name:
typing.Optional[str]
— The name of a field
-
help_text:
typing.Optional[str]
— Additional text to help anyone filling out this field
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.list_items(...)
-
-
-
List of all Items within a Collection.
Required scope |
CMS:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.list_items( collection_id="580e63fc8c9a982ac9b8b745", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
cms_locale_id:
typing.Optional[str]
— Unique identifier for a CMS Locale. This UID is different from the Site locale identifier and is listed ascmsLocaleId
in the Sites response. To query multiple locales, input a comma separated string.
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
name:
typing.Optional[str]
— The name of the item(s)
-
slug:
typing.Optional[str]
— The slug of the item
-
sort_by:
typing.Optional[ItemsListItemsRequestSortBy]
— Sort results by the provided value
-
sort_order:
typing.Optional[ItemsListItemsRequestSortOrder]
— Sorts the results by asc or desc
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.create_item(...)
-
-
-
Create Item(s) in a Collection.
To create items across multiple locales, please use this endpoint.
Required scope |
CMS:write
-
-
-
from webflow import ( CollectionItemPostSingle, CollectionItemPostSingleFieldData, Webflow, ) from webflow.resources.collections.resources.items import MultipleItems client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.create_item( collection_id="580e63fc8c9a982ac9b8b745", request=MultipleItems( items=[ CollectionItemPostSingle( is_archived=False, is_draft=False, field_data=CollectionItemPostSingleFieldData( name="Senior Data Analyst", slug="senior-data-analyst", ), ), CollectionItemPostSingle( is_archived=False, is_draft=False, field_data=CollectionItemPostSingleFieldData( name="Product Manager", slug="product-manager", ), ), ], ), )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
request:
ItemsCreateItemRequest
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.delete_items(...)
-
-
-
Delete Items from a Collection.
Note: If the
cmsLocaleId
parameter is undefined or empty and the items are localized, items will be deleted only in the primary locale.Required scope |
CMS:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.delete_items( collection_id="580e63fc8c9a982ac9b8b745", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
items:
typing.Optional[typing.Sequence[ItemsDeleteItemsRequestItemsItem]]
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.update_items(...)
-
-
-
Update a single item or multiple items (up to 100) in a Collection.
Note: If the
cmsLocaleId
parameter is undefined or empty and the items are localized, items will be updated only in the primary locale.Required scope |
CMS:write
-
-
-
from webflow import ( CollectionItemWithIdInput, CollectionItemWithIdInputFieldData, Webflow, ) client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.update_items( collection_id="580e63fc8c9a982ac9b8b745", items=[ CollectionItemWithIdInput( id="66f6ed9576ddacf3149d5ea6", cms_locale_id="66f6e966c9e1dc700a857ca5", field_data=CollectionItemWithIdInputFieldData( name="Ne Paniquez Pas", slug="ne-paniquez-pas", ), ), CollectionItemWithIdInput( id="66f6ed9576ddacf3149d5ea6", cms_locale_id="66f6e966c9e1dc700a857ca4", field_data=CollectionItemWithIdInputFieldData( name="No Entrar en Pánico", slug="no-entrar-en-panico", ), ), CollectionItemWithIdInput( id="66f6ed9576ddacf3149d5eaa", cms_locale_id="66f6e966c9e1dc700a857ca5", field_data=CollectionItemWithIdInputFieldData( name="Au Revoir et Merci pour Tous les Poissons", slug="au-revoir-et-merci", ), ), CollectionItemWithIdInput( id="66f6ed9576ddacf3149d5eaa", cms_locale_id="66f6e966c9e1dc700a857ca4", field_data=CollectionItemWithIdInputFieldData( name="Hasta Luego y Gracias por Todo el Pescado", slug="hasta-luego-y-gracias", ), ), ], )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
items:
typing.Optional[typing.Sequence[CollectionItemWithIdInput]]
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.list_items_live(...)
-
-
-
List of all live Items within a Collection.
Required scope |
CMS:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.list_items_live( collection_id="580e63fc8c9a982ac9b8b745", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
cms_locale_id:
typing.Optional[str]
— Unique identifier for a CMS Locale. This UID is different from the Site locale identifier and is listed ascmsLocaleId
in the Sites response. To query multiple locales, input a comma separated string.
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
name:
typing.Optional[str]
— The name of the item(s)
-
slug:
typing.Optional[str]
— The slug of the item
-
sort_by:
typing.Optional[ItemsListItemsLiveRequestSortBy]
— Sort results by the provided value
-
sort_order:
typing.Optional[ItemsListItemsLiveRequestSortOrder]
— Sorts the results by asc or desc
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.create_item_live(...)
-
-
-
Create live Item(s) in a Collection. The Item(s) will be published to the live site.
To create items across multiple locales, please use this endpoint.
Required scope |
CMS:write
-
-
-
from webflow import CollectionItem, CollectionItemFieldData, Webflow from webflow.resources.collections.resources.items import MultipleLiveItems client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.create_item_live( collection_id="580e63fc8c9a982ac9b8b745", request=MultipleLiveItems( items=[ CollectionItem( is_archived=False, is_draft=False, field_data=CollectionItemFieldData( name="Senior Data Analyst", slug="senior-data-analyst", ), ), CollectionItem( is_archived=False, is_draft=False, field_data=CollectionItemFieldData( name="Product Manager", slug="product-manager", ), ), ], ), )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
request:
ItemsCreateItemLiveRequest
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.delete_items_live(...)
-
-
-
Remove an item or multiple items (up to 100 items) from the live site. Deleting published items will unpublish the items from the live site and set them to draft.
Note: If the
cmsLocaleId
parameter is undefined or empty and the items are localized, items will be unpublished only in the primary locale.Required scope |
CMS:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.delete_items_live( collection_id="580e63fc8c9a982ac9b8b745", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
items:
typing.Optional[typing.Sequence[ItemsDeleteItemsLiveRequestItemsItem]]
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.update_items_live(...)
-
-
-
Update a single live item or multiple live items (up to 100) in a Collection
Note: If the
cmsLocaleId
parameter is undefined or empty and the items are localized, items will be updated only in the primary locale.Required scope |
CMS:write
-
-
-
from webflow import ( CollectionItemWithIdInput, CollectionItemWithIdInputFieldData, Webflow, ) client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.update_items_live( collection_id="580e63fc8c9a982ac9b8b745", items=[ CollectionItemWithIdInput( id="66f6ed9576ddacf3149d5ea6", cms_locale_id="66f6e966c9e1dc700a857ca5", field_data=CollectionItemWithIdInputFieldData( name="Ne Paniquez Pas", slug="ne-paniquez-pas", ), ), CollectionItemWithIdInput( id="66f6ed9576ddacf3149d5ea6", cms_locale_id="66f6e966c9e1dc700a857ca4", field_data=CollectionItemWithIdInputFieldData( name="No Entrar en Pánico", slug="no-entrar-en-panico", ), ), CollectionItemWithIdInput( id="66f6ed9576ddacf3149d5eaa", cms_locale_id="66f6e966c9e1dc700a857ca5", field_data=CollectionItemWithIdInputFieldData( name="Au Revoir et Merci pour Tous les Poissons", slug="au-revoir-et-merci", ), ), CollectionItemWithIdInput( id="66f6ed9576ddacf3149d5eaa", cms_locale_id="66f6e966c9e1dc700a857ca4", field_data=CollectionItemWithIdInputFieldData( name="Hasta Luego y Gracias por Todo el Pescado", slug="hasta-luego-y-gracias", ), ), ], )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
items:
typing.Optional[typing.Sequence[CollectionItemWithIdInput]]
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.create_items(...)
-
-
-
Create an item or multiple items in a CMS Collection across multiple corresponding locales.
Notes:
- This endpoint can create up to 100 items in a request.
- If the
cmsLocaleIds
parameter is undefined or empty and localization is enabled, items will only be created in the primary locale.
Required scope |
CMS:write
-
-
-
from webflow import Webflow from webflow.resources.collections.resources.items import SingleCmsItem client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.create_items( collection_id="580e63fc8c9a982ac9b8b745", cms_locale_ids=[ "66f6e966c9e1dc700a857ca3", "66f6e966c9e1dc700a857ca4", "66f6e966c9e1dc700a857ca5", ], is_archived=False, is_draft=False, field_data=SingleCmsItem( name="Don’t Panic", slug="dont-panic", ), )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
field_data:
CreateBulkCollectionItemRequestBodyFieldData
-
cms_locale_ids:
typing.Optional[typing.Sequence[str]]
— Array of identifiers for the locales where the item will be created
-
is_archived:
typing.Optional[bool]
— Indicates whether the item is archived.
-
is_draft:
typing.Optional[bool]
— Indicates whether the item is in draft state.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.get_item(...)
-
-
-
Get details of a selected Collection Item.
Required scope |
CMS:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.get_item( collection_id="580e63fc8c9a982ac9b8b745", item_id="580e64008c9a982ac9b8b754", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
item_id:
str
— Unique identifier for an Item
-
cms_locale_id:
typing.Optional[str]
— Unique identifier for a CMS Locale. This UID is different from the Site locale identifier and is listed ascmsLocaleId
in the Sites response. To query multiple locales, input a comma separated string.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.delete_item(...)
-
-
-
Delete an Item from a Collection. This endpoint does not currently support bulk deletion.
Required scope |
CMS:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.delete_item( collection_id="580e63fc8c9a982ac9b8b745", item_id="580e64008c9a982ac9b8b754", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
item_id:
str
— Unique identifier for an Item
-
cms_locale_id:
typing.Optional[str]
— Unique identifier for a CMS Locale. This UID is different from the Site locale identifier and is listed ascmsLocaleId
in the Sites response. To query multiple locales, input a comma separated string.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.update_item(...)
-
-
-
Update a selected Item in a Collection.
Required scope |
CMS:write
-
-
-
from webflow import CollectionItemPatchSingleFieldData, Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.update_item( collection_id="580e63fc8c9a982ac9b8b745", item_id="580e64008c9a982ac9b8b754", is_archived=False, is_draft=False, field_data=CollectionItemPatchSingleFieldData( name="Pan Galactic Gargle Blaster Recipe", slug="pan-galactic-gargle-blaster", ), )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
item_id:
str
— Unique identifier for an Item
-
id:
typing.Optional[str]
— Unique identifier for the Item
-
cms_locale_id:
typing.Optional[str]
— Identifier for the locale of the CMS item
-
last_published:
typing.Optional[str]
— The date the item was last published
-
last_updated:
typing.Optional[str]
— The date the item was last updated
-
created_on:
typing.Optional[str]
— The date the item was created
-
is_archived:
typing.Optional[bool]
— Boolean determining if the Item is set to archived
-
is_draft:
typing.Optional[bool]
— Boolean determining if the Item is set to draft
-
field_data:
typing.Optional[CollectionItemPatchSingleFieldData]
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.get_item_live(...)
-
-
-
Get details of a selected Collection live Item.
Required scope |
CMS:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.get_item_live( collection_id="580e63fc8c9a982ac9b8b745", item_id="580e64008c9a982ac9b8b754", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
item_id:
str
— Unique identifier for an Item
-
cms_locale_id:
typing.Optional[str]
— Unique identifier for a CMS Locale. This UID is different from the Site locale identifier and is listed ascmsLocaleId
in the Sites response. To query multiple locales, input a comma separated string.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.delete_item_live(...)
-
-
-
Remove a live item from the site. Removing a published item will unpublish the item from the live site and set it to draft.
This endpoint does not currently support bulk deletion.
Required scope |
CMS:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.delete_item_live( collection_id="580e63fc8c9a982ac9b8b745", item_id="580e64008c9a982ac9b8b754", )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
item_id:
str
— Unique identifier for an Item
-
cms_locale_id:
typing.Optional[str]
— Unique identifier for a CMS Locale. This UID is different from the Site locale identifier and is listed ascmsLocaleId
in the Sites response. To query multiple locales, input a comma separated string.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.update_item_live(...)
-
-
-
Update a selected live Item in a Collection. The updates for this Item will be published to the live site.
Required scope |
CMS:write
-
-
-
from webflow import CollectionItemPatchSingleFieldData, Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.update_item_live( collection_id="580e63fc8c9a982ac9b8b745", item_id="580e64008c9a982ac9b8b754", is_archived=False, is_draft=False, field_data=CollectionItemPatchSingleFieldData( name="Pan Galactic Gargle Blaster Recipe", slug="pan-galactic-gargle-blaster", ), )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
item_id:
str
— Unique identifier for an Item
-
id:
typing.Optional[str]
— Unique identifier for the Item
-
cms_locale_id:
typing.Optional[str]
— Identifier for the locale of the CMS item
-
last_published:
typing.Optional[str]
— The date the item was last published
-
last_updated:
typing.Optional[str]
— The date the item was last updated
-
created_on:
typing.Optional[str]
— The date the item was created
-
is_archived:
typing.Optional[bool]
— Boolean determining if the Item is set to archived
-
is_draft:
typing.Optional[bool]
— Boolean determining if the Item is set to draft
-
field_data:
typing.Optional[CollectionItemPatchSingleFieldData]
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.collections.items.publish_item(...)
-
-
-
Publish an item or multiple items.
Required scope |
cms:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.collections.items.publish_item( collection_id="580e63fc8c9a982ac9b8b745", item_ids=["itemIds"], )
-
-
-
collection_id:
str
— Unique identifier for a Collection
-
item_ids:
typing.Sequence[str]
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.pages.scripts.get_custom_code(...)
-
-
-
Get all registered scripts that have been applied to a specific Page.
In order to use the Custom Code APIs for Sites and Pages, Custom Code Scripts must first be registered to a Site via the
registered_scripts
endpoints, and then applied to a Site or Page using the appropriatecustom_code
endpoints.Access to this endpoint requires a bearer token from a Data Client App.
Required scope |
custom_code:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.pages.scripts.get_custom_code( page_id="63c720f9347c2139b248e552", )
-
-
-
page_id:
str
— Unique identifier for a Page
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.pages.scripts.upsert_custom_code(...)
-
-
-
Add a registered script to a Page.
In order to use the Custom Code APIs for Sites and Pages, Custom Code Scripts must first be registered to a Site via the
registered_scripts
endpoints, and then applied to a Site or Page using the appropriatecustom_code
endpoints.A site can have a maximum of 800 registered scripts.
Access to this endpoint requires a bearer token from a Data Client App.
Required scope |
custom_code:write
-
-
-
from webflow import ScriptApply, Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.pages.scripts.upsert_custom_code( page_id="63c720f9347c2139b248e552", scripts=[ ScriptApply( id="cms_slider", location="header", version="1.0.0", attributes={"my-attribute": "some-value"}, ), ScriptApply( id="alert", location="header", version="0.0.1", ), ], )
-
-
-
page_id:
str
— Unique identifier for a Page
-
scripts:
typing.Optional[typing.Sequence[ScriptApply]]
— A list of scripts applied to a Site or a Page
-
last_updated:
typing.Optional[str]
— Date when the Site's scripts were last updated
-
created_on:
typing.Optional[str]
— Date when the Site's scripts were created
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.pages.scripts.delete_custom_code(...)
-
-
-
Delete the custom code block that an app has created for a page
In order to use the Custom Code APIs for Sites and Pages, Custom Code Scripts must first be registered to a Site via the
registered_scripts
endpoints, and then applied to a Site or Page using the appropriatecustom_code
endpoints.Access to this endpoint requires a bearer token from a Data Client App.
Required scope |
custom_code:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.pages.scripts.delete_custom_code( page_id="63c720f9347c2139b248e552", )
-
-
-
page_id:
str
— Unique identifier for a Page
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.redirects.list(...)
-
-
-
Fetch a list of all URL redirect rules configured for a specific site.
Use this endpoint to review, audit, or manage the redirection rules that control how traffic is rerouted on your site.
Required scope:
sites:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.redirects.list( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.redirects.create(...)
-
-
-
Add a new URL redirection rule to a site.
This endpoint allows you to define a source path (
fromUrl
) and its corresponding destination path (toUrl
), which will dictate how traffic is rerouted on your site. This is useful for managing site changes, restructuring URLs, or handling outdated links.Required scope:
sites:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.redirects.create( site_id="580e63e98c9a982ac9b8b741", id="42e1a2b7aa1a13f768a0042a", from_url="/mostly-harmless", to_url="/earth", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
id:
typing.Optional[str]
— The ID of the specific redirect rule
-
from_url:
typing.Optional[str]
— The source URL path that will be redirected.
-
to_url:
typing.Optional[str]
— The target URL path where the user or client will be redirected.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.redirects.delete(...)
-
-
-
Remove a URL redirection rule from a site. This is useful for cleaning up outdated or unnecessary redirects, ensuring that your site's routing behavior remains efficient and up-to-date. Required scope:
sites:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.redirects.delete( site_id="580e63e98c9a982ac9b8b741", redirect_id="66c4cb9a20cac35ed19500e6", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
redirect_id:
str
— Unique identifier site rediect
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.redirects.update(...)
-
-
-
Update a URL redirection rule from a site. Required scope:
sites:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.redirects.update( site_id="580e63e98c9a982ac9b8b741", redirect_id="66c4cb9a20cac35ed19500e6", id="42e1a2b7aa1a13f768a0042a", from_url="/mostly-harmless", to_url="/earth", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
redirect_id:
str
— Unique identifier site rediect
-
id:
typing.Optional[str]
— The ID of the specific redirect rule
-
from_url:
typing.Optional[str]
— The source URL path that will be redirected.
-
to_url:
typing.Optional[str]
— The target URL path where the user or client will be redirected.
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.plans.get_site_plan(...)
-
-
-
Get site plan details for the specified Site.
Required scope |
sites:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.plans.get_site_plan( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.activity_logs.list(...)
-
-
-
Retrieve Activity Logs for a specific Site. Requires Site to be on an Enterprise plan.
Required scope |site_activity:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.activity_logs.list( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.scripts.get_custom_code(...)
-
-
-
Get all registered scripts that have been applied to a specific Site.
Access to this endpoint requires a bearer token from a Data Client App.
Required scope |
custom_code:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.scripts.get_custom_code( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.scripts.upsert_custom_code(...)
-
-
-
Add a registered script to a Site.
In order to use the Custom Code APIs for Sites and Pages, Custom Code Scripts must first be registered to a Site via the
registered_scripts
endpoints, and then applied to a Site or Page using the appropriatecustom_code
endpoints.Access to this endpoint requires a bearer token from a Data Client App.
Required scope |
custom_code:write
-
-
-
from webflow import ScriptApply, Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.scripts.upsert_custom_code( site_id="580e63e98c9a982ac9b8b741", scripts=[ ScriptApply( id="cms_slider", location="header", version="1.0.0", attributes={"my-attribute": "some-value"}, ), ScriptApply( id="alert", location="header", version="0.0.1", ), ], )
-
-
-
site_id:
str
— Unique identifier for a Site
-
scripts:
typing.Optional[typing.Sequence[ScriptApply]]
— A list of scripts applied to a Site or a Page
-
last_updated:
typing.Optional[str]
— Date when the Site's scripts were last updated
-
created_on:
typing.Optional[str]
— Date when the Site's scripts were created
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.scripts.delete_custom_code(...)
-
-
-
Delete the custom code block that an app created for a Site
Access to this endpoint requires a bearer token from a Data Client App.
Required scope |
custom_code:write
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.scripts.delete_custom_code( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-
client.sites.scripts.list_custom_code_blocks(...)
-
-
-
Get all instances of Custom Code applied to a Site or Pages.
Access to this endpoint requires a bearer token from a Data Client App.
Required scope |
custom_code:read
-
-
-
from webflow import Webflow client = Webflow( access_token="YOUR_ACCESS_TOKEN", ) client.sites.scripts.list_custom_code_blocks( site_id="580e63e98c9a982ac9b8b741", )
-
-
-
site_id:
str
— Unique identifier for a Site
-
offset:
typing.Optional[float]
— Offset used for pagination if the results have more than limit records
-
limit:
typing.Optional[float]
— Maximum number of records to be returned (max limit: 100)
-
request_options:
typing.Optional[RequestOptions]
— Request-specific configuration.
-
-