modify_conversion_notes
Read or update conversion notes with explicit required key names. How to use: - Call without `conversion_notes` to inspect current notes. - For updates, provide all three canonical keys for consistency. Expected keys (string values): - `Product Name` - `Payment Terms/Plans` - `General Notes`
Remote signal-found/reddit-outreach
Other tools also called modify_conversion_notes?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"client_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Client Id",
"default": null
},
"product_slug": {
"type": "string",
"title": "Product Slug"
},
"conversion_notes": {
"anyOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
}
},
{
"type": "null"
}
],
"title": "Conversion Notes",
"default": null
}
}
}