Versions Compared

Key

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

...

The return value represents the success of the attachment process. If the routine returns "true" the file was attached successfully.

Example

Code Block
languagejs
string url_to_file;
string issueKey;
url_to_file = "http://otherServer/generateForm.aspx?PackageName=customField_10192";
issueKey = "PRJ-239";
attachFileFromURL(url_to_file, issueKey);

...