Syntax
copyBoard(board)
Description
Create a copy of the provided board.Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
board | string | Yes | The name or the id of the board to be copied. |
Return type
string
The board that was created.
Example
string copy = copyBoard("DEMO");
Result: The result will create a copy of "DEMO" board named "Copy of DEMO".