Developer Resources
Details
| SoapAction | http://jackhenry.com/ws/DocImgMod |
| Input Name | DocImgMod |
| Output Name | DocImgModResponse |
| Input Namespace | http://jackhenry.com/jxchange/TPG/2008 |
| Group Name | Image |
| Container | TPG_ImageMaster.xsd |
XML Examples
Coming Soon.
DocImgMod FAQ
Q: If a client uploads documents to a cabinet (Cabinet 1). Later they want to move those documents to another cabinet (Cabinet 2). Is there a function that allows them to move the documents from cabinet 1 to cabinet 2 instead of having to re-upload the documents to cabinet 2?
A: Using the DocImgMod operation, you would need to pass in the UniqueIndex of the document to change along with the name of the new Cabinet that the document will be moved to. For example, if a document is in Cabinet ACCOUNTING and you wanted to move it to Cabinet LOANS you would call:
<DocImgMod xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://jackhenry.com/jxchange/TPG/2008">
<MsgRqHdr>
<jXchangeHdr>
<AuditUsrId>jdoe</AuditUsrId>
<AuditWsId>JDOE-LAP</AuditWsId>
<AuthenUsrId>jdoe</AuthenUsrId>
<InstRtId>999999999</InstRtId>
</jXchangeHdr>
</MsgRqHdr>
<ErrOvrRdInfoArray xsi:nil="true" />
<DocImgIdxArray>
<DocImgIdx>
<DocImgIdxName />
<DocImgIdxType>UniqueIndex</DocImgIdxType>
<DocImgIdxValue>…base64 encoded value used to identify the item…</DocImgIdxValue>
</DocImgIdx>
</DocImgIdxArray>
<DocImgModInfo>
<DocImgIdxModArray>
<DocImgIdx>
<DocImgIdxName />
<DocImgIdxType>Cabinet</DocImgIdxType>
<DocImgIdxValue>LOANS</DocImgIdxValue>
</DocImgIdx>
</DocImgIdxModArray>
<Custom xsi:nil="true" />
</DocImgModInfo>
<Dlt xsi:nil="true" />
</DocImgMod>
To obtain the UniqueIndex of a document the DocImgSrch operation will need to be used.
Is there a way to remove all documents tied to a CIF?
No, batch removal is not supported. The DocImgMod function allows for singular document removal only. There is currently no API available for performing a batch purge of documents.
- Have a how-to question? Seeing a weird error? Get help on StackOverflow.
- Register for the Developer Office Hours where we answer technical Q&A from the audience.