UploadAttachment
Uploads an attachment to a Domino note
Input
| Name | Type | Required | Accepts Input Streams | Description |
| Unid | String | True | False | The ID of the note that will contain the uploaded file |
| FileName | String | True | False | The name the file should have on the server |
| UploadPath | String | False | False | The local path to to read the file data from. |
| FileData | String | False | False | The data to write to the attachment, encoded as base64. |
| FileStream | String | False | True | Stream of input data. Required if UploadPath and FileData are not defined. |
| Mode | String | False | False | One of: CREATE (fail if attachment exists), REPLACE (fail if attachment does not exist) or UPSERT (create or replace if exists). Defaults to CREATE
The default value is CREATE. |
Result Set Columns
| Name | Type | Description |
| Success | String | Whether the operation was successful |