Create a canvas
Schema.slack.functions.CanvasCreateslack#/functions/canvas_createblank or template. Default is blank. If type is blank or undefined, no canvas_template_id is needed. If type is template, provide a canvas_template_id.
canvas_create_type is set to template.
canvas_create_type is set to blank.
This function creates a canvas. If canvas_create_type is not passed, it is set as blank.
The app using this function will need the following App Home features set in the app manifest file:
features: {
appHome: {
messagesTabEnabled: true,
messagesTabReadOnlyEnabled: false,
},
},
For information about the expanded_rich_text type that you can use to update your canvases, refer to expanded_rich_text.
const createCanvasStep = ExampleWorkflow.addStep(
Schema.slack.functions.CanvasCreate,
{
title: "My new canvas",
owner_id: "PERSON12345",
canvas_create_type: "blank",
content: { inputs.content }
},
);