Versions Compared

Key

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

Allows a Workflow Import process to be started via an API call, rather than uploading a file via the UI.

Introduced in 11.0.33.

...

Code Block
POST /API/WorkflowImportQueue/CreateBatch
?fileName={filename}
&importProcessId={id}
&creationPath={string}
&sendSuccessEmailTo={email}
&sendFailureEmailTo={email}
  • fileName - displayed in the “Recent Imports” part of the UI; provide a human-readable description of this particular import, such as “ACME Process {yyyy/mm/dd}

  • importProcessId - the ID of the Workflow Import Queue "file type" /wiki/spaces/DOCS/pages/1569915157 to use;

  • creationPath - a string, up to 15 characters in length, consisting only of upper case letters, numbers, and underscores. See below for explanation.

  • sendSuccessEmailTo - (optional) an email address to notify of a successful import process

  • sendFailureEmailTo - (optional) an email address to notify if any records fail to process

...