Hi all,
I am trying to connect DCTM with SharePoint online and send single document using SPO flow. I am using REST API for it.
URI: dctm_path/rest/repositories/repository_name/folders/folder_id/documents
Followings are the parameters I am passing:
object: {"properties":{"r_object_type":"custon_object_type","object_name":"Test10","title":"Test10"}}
binary: test
content-type: application/vnd.emc.documentum+json;charset=UTF-8
While running the flow, I am getting following error:
{
"status": 400,
"code": "E_INPUT_MESSAGE_NOT_READABLE",
"message": "The input message is not readable.\r\nclientRequestId: 2fe2b792-56f0-4355-95a2-1787318768f4",
"details": "Required request body is missing: public com.emc.documentum.rest.model.DocumentObject com.emc.documentum.rest.controller.FolderChildDocumentsController.createChildDocument(java.lang.String,com.emc.documentum.rest.model.DocumentObject,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,boolean,com.emc.documentum.rest.http.UriInfo) throws com.documentum.fc.common.DfException,org.springframework.web.bind.MissingServletRequestParameterException",
"id": "2a47e10b-bd8e-4fce-a873-fd64a42b2503"
}
It seems that I am missing some parameter here. What can be the solution for it?