Question:
How can I upload a data record into DocuWare utilizing the .NET SDK?
Answer:
In order to upload data records into DocuWare, the following example can be used as a reference:
For more on .NET SDK and examples such as the on depicted above, please visit DocuWare Developer Pages.
KBA applicable for both Cloud and On-premise Organizations.
Answer:
In order to upload data records into DocuWare, the following example can be used as a reference:
public Document UploadDataRecordToFileCabinet(FileCabinet fileCabinet)
{
var indexData = new Document()
{
Fields = new List<DocumentIndexField>()
{
/* Names should be capitalized and are the database names
* of the fields. They do not require DW_ prefixes.
*/
DocumentIndexField.Create("FIELDNAME", "Value1"),
DocumentIndexField.Create("FIELDNAME2", "Value2"),
}
};
var uploadedDocument = fileCabinet.UploadDocument(indexData);
return uploadedDocument;
}
KBA applicable for both Cloud and On-premise Organizations.