SymXchange API

Make Merchant Verification Share Withdrawal and Place One-Day Hold

Transaction Examples > Make Merchant Verification Share Withdrawal and Place One-Day Hold

Use this request to make a merchant verification share withdrawal without posting the transaction, and automatically create a one-day hold.

  • Target WSDL: TransactionsService
  • Operation: withdraw
  • Available Credential Types: AccountNumber, HomeBanking, Card, MICR, Lookup, UserNumber, Administrative

XML Request

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tran="http://www.symxchange.generated.symitar.com/v1/transactions"
xmlns:com="http://www.symxchange.generated.symitar.com/v1/common/dto/common"
xmlns:dto="http://www.symxchange.generated.symitar.com/v1/transactions/dto">
   <soapenv:Header/>
   <soapenv:Body>
      <tran:withdraw>
         <Request MessageId="withdraw">
            <Credentials>
               <MICRCredentials>
                  <MICRNumber>132180001</MICRNumber>
               </MICRCredentials>
            </Credentials>
            <DeviceInformation DeviceType="CLIENTSYSTEM" DeviceNumber="20000"/>
            <dto:ShareId>1</dto:ShareId>
            <WithdrawalAmounts>
               <dto:TotalAmount>1160.14</dto:TotalAmount>
               <CheckAmount>1160.14</CheckAmount>
            </WithdrawalAmounts>
            <dto:AuthorizationType>ONE_DAY_GENERAL_HOLD</dto:AuthorizationType>
         </Request>
      </tran:withdraw>
   </soapenv:Body>
</soapenv:Envelope>

Required elements in the request include the following tags:

  • dto:ShareId
  • WithdrawalAmounts
  • dto:TotalAmount
  • CheckAmount
  • AuthorizationType

XML Response

<soap:Envelope xmlns:soap=
"http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns4:withdrawResponse xmlns:ns4="http://www.symxchange.generated.symitar.com/v1/transactions"
      xmlns:ns3="http://www.symxchange.generated.symitar.com/v1/transactions/dto"
      xmlns:ns2="http://www.symxchange.generated.symitar.com/v1/common/dto/common">
         <Response Confirmation="08000000001675" SequenceFrom="0" TransactionPostDate="2016-12-15" 
         MessageId="withdraw" StatusCode="0">
            <ns3:OverdrawInformation>
               <OverdrawToleranceAmount>0.00</OverdrawToleranceAmount>
            </ns3:OverdrawInformation>
         </Response>
      </ns4:withdrawResponse>
   </soap:Body>
</soap:Envelope>
Last updated Fri Mar 3 2023