Developer Programs

Learn

Docs
jXchange REST-Legacy Migration announced. Deadline for migration is July 31, 2026.

Developer Resources

API by Reference > Document Image > Document Image Modify > Developer Resources

Details

SoapActionhttp://jackhenry.com/ws/DocImgMod
Input NameDocImgMod
Output NameDocImgModResponse
Input Namespacehttp://jackhenry.com/jxchange/TPG/2008
Group NameImage
ContainerTPG_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:

XML
 <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 Question?

Did this page help you?

Last updated Wed Mar 4 2026