marketo_get_forms
Retrieve approved or draft Marketo forms with configurable parameters like maxReturn and offset using the Marketo MCP Server. Simplify form management for efficient API integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxReturn | No | ||
offset | No | ||
status | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"maxReturn": {
"type": "number"
},
"offset": {
"type": "number"
},
"status": {
"enum": [
"approved",
"draft"
],
"type": "string"
}
},
"type": "object"
}