Back to all

Punctuations in Document Names

Hello Team,

I am currently trying to Create documents for emails tied to a specific AbEntryParentKey.

Here is my current payload. I am trying to import them as .msg extension.

{
"Document": {
"Data": {
"Key": None,
"Name": "Import test;",
"BinaryDataId": binaryId,
"Datetime": date,
"Ext": ".msg",
"Type": 3,
"ParentKey": key
}
},
"Configuration": {
"Drivers": {
"IDocumentAccess": "Maximizer.Model.Access.Sql.DocumentAccess"
}
}
}

I realized that if the "Name" includes a ";" it will be created in Maximizer normally.

But if I were to download it to view, the document with ";" in the name is downloaded as an encoded file and I can't opened with it my Mail app. It works perfectly fine without ";" in their name and downloaded as an Outlook item.

Are there any symbols/punctuations I should look out for and parse out before my imports?

Thank you team!