modify_subreddits
Read or update subreddit targeting groups. How to use: - Call without `subreddit_groups` to inspect current targeting. - Update expects `groups` format used by onboard API targeting endpoint. Expected `subreddit_groups` item shape: - `subreddits`: list of subreddit names (without `r/` prefix preferred).
Remote signal-found/reddit-outreach
Other tools also called modify_subreddits?
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"
},
"subreddit_groups": {
"anyOf": [
{
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
{
"type": "null"
}
],
"title": "Subreddit Groups",
"default": null
},
"run_quality_check": {
"type": "boolean",
"title": "Run Quality Check",
"default": false
}
}
}