Slack
SLACKBOT_LOOKUP_CANVAS_SECTIONS
Looks up section IDs in a Slack Canvas for use with targeted edit operations. Section IDs are needed for insert_after, insert_before, delete, and section-specific replace operations.
Remote slackbot
Other tools also called SLACKBOT_LOOKUP_CANVAS_SECTIONS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"criteria": {
"type": "object",
"title": "Criteria",
"examples": [
{
"contains_text": "grocery"
},
{
"contains_text": "Roadmap"
},
{
"contains_text": "Task"
}
],
"description": "Search criteria to find sections. Use 'contains_text' to search for text within sections. Returns section IDs that match the criteria.",
"additionalProperties": true
},
"canvas_id": {
"type": "string",
"title": "Canvas Id",
"examples": [
"F01234ABCDE"
],
"description": "The unique identifier of the canvas to lookup sections in"
}
}
}