Copy a canvas
Schema.slack.functions.CanvasCopy
slack#/functions/canvas_copy
This function copies a canvas. 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 copyCanvasStep = ExampleWorkflow.addStep(
Schema.slack.functions.CanvasCopy,
{
canvas_id: "CAN87654",
title: "My new canvas",
owner_id: "ABC123456"
},
);