pages_list
Retrieve a list of pages for a specific Webflow site by providing the site ID. Use parameters like limit, offset, and locale to refine the results for your needs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
localeId | No | ||
offset | No | ||
site_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"type": "number"
},
"localeId": {
"type": "string"
},
"offset": {
"type": "number"
},
"site_id": {
"type": "string"
}
},
"required": [
"site_id"
],
"type": "object"
}