marketo_approve_form
Approve Marketo forms by submitting a form ID and optional comment using the Marketo MCP Server, ensuring forms are ready for use in campaigns.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | No | ||
formId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"comment": {
"type": "string"
},
"formId": {
"type": "number"
}
},
"required": [
"formId"
],
"type": "object"
}