Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt

Sets workflows to the space according to a given markup. Markup Information - For more information about the markup, see Comala Workflow Authoring Guide.

Returns true if successful, and false in all other cases.


Parameters

Parameter name

Type

Required

Description

spaceKey

number

Yes

The selected Selected space to retrieve the workflow of.

workflowMarkupstringYesComala Workflows markup.

Return type

Boolean

Returns true if successful, and false otherwise.

Example

Code Block
languagejava
linenumberstrue
string workflowMarkup = readFromTextFile("C:/workflowMarkup.txt");

return comalaLoadWorkflowToSpace("TST", workflowMarkup);

...