canvas_copy
Facts
Description
Schema
Schema reference
Required scopes
No additional scopes required
Input Parameters
Output Parameters
Usage info
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.
Example workflow step
const copyCanvasStep = ExampleWorkflow.addStep(
Schema.slack.functions.CanvasCopy,
{
canvas_id: "CAN87654",
title: "My new canvas",
owner_id: "ABC123456"
},
);