Hi,
I'm trying to start a document flow using the API:
/infor/IONSERVICES/api/ion/messaging/service/v2/message
Using this as a request body:
<?xml version="1.0" encoding="UTF-8"?>
<messageRequest>
<documentName>SyncCustomerPartyMaster</documentName>
<messageId>msg#1234560</messageId>
<fromLogicalId>lid://infor.ims.test_ims</fromLogicalId>
<toLogicalId>lid://default</toLogicalId>
<document>
<value>testVAlue</value>
<encoding>NONE</encoding>
<characterSet>UTF-8</characterSet>
</document>
<additionalProperties>
<accountingEntity>infor12344</accountingEntity>
<location>nlregtest3</location>
<documentId>doc1234560</documentId>
<variationId>1</variationId>
<revisionId>6784</revisionId>
<batchId>infor.SSJE:1</batchId>
<batchSequence>2</batchSequence>
<batchSize>1</batchSize>
<batchRevision>1</batchRevision>
<batchAbortIndicator>true</batchAbortIndicator>
<instances>1</instances>
<source>DB Connector</source>
<custom_property>value</custom_property>
</additionalProperties>
</messageRequest>
Is there any documentation available on how to generate documentvalue so it will hold an actual BOD document? Or if anyone has any instruction or perhaps demo XML/JSON that can share? This sample above works, but it creates a document that has only "testValue" as a content. I cannot enter any XML inside the value element. (the other data is just from sample that is available in ION API Available Api's).