Card Send Files
API: Ws_Send_CardFiles
This web service enables you to create two .csv files and send the files to the SFTP folder specified in the request. One file contains the 9 digit public token and CVV. The other file contains the 9 digit public token and the middle 6 digits of the PAN.
Record Description
| 
                                                         Tag  | 
                                                    
                                                         Type  | 
                                                    
                                                         Minimum Length  | 
                                                    
                                                         Maximum Length  | 
                                                    
                                                         Description  | 
                                                    
                                                         Request  | 
                                                    
                                                         Response  | 
                                                
|---|---|---|---|---|---|---|
| 
                                                         <WSID>  | 
                                                    
                                                         N  | 
                                                    
                                                         1  | 
                                                    
                                                         19  | 
                                                    
                                                         Web service ID. Must be unique for every request. For details, see the FAQs.  | 
                                                    
                                                         Mandatory  | 
                                                    
                                                         Mandatory  | 
                                                
| 
                                                         <IssCode>  | 
                                                    
                                                         AN  | 
                                                    
                                                         1  | 
                                                    
                                                         4  | 
                                                    
                                                         Thredd Issuer (Program Manager) Code. Assigned by Thredd.  | 
                                                    
                                                         Mandatory  | 
                                                    
                                                         Mandatory  | 
                                                
| 
                                                         <CustAccount>  | 
                                                    
                                                         AN  | 
                                                    
                                                         1  | 
                                                    
                                                         25  | 
                                                    
                                                         Cardholder account number or reference number.  | 
                                                    
                                                         Mandatory  | 
                                                    
                                                         Mandatory  | 
                                                
| 
                                                         <SFTP>  | 
                                                    
                                                         AN  | 
                                                    
                                                         1  | 
                                                    
                                                         50  | 
                                                    
                                                         SFTP folder name.  | 
                                                    
                                                         Mandatory  | 
                                                    
                                                         Mandatory  | 
                                                
| 
                                                         <ActionCode>  | 
                                                    
                                                         AN  | 
                                                    
                                                         3  | 
                                                    
                                                         3  | 
                                                    
                                                         The action code for the response. See Action Codes.  | 
                                                    
                                                         Omit  | 
                                                    
                                                         Mandatory  | 
                                                
Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hyp="http://www.globalprocessing.ae/HyperionWeb">
   <soapenv:Header>
      <hyp:AuthSoapHeader>
         <hyp:strUserName>******</hyp:strUserName>
         <hyp:strPassword>******</hyp:strPassword>
      </hyp:AuthSoapHeader>
   </soapenv:Header>
   <soapenv:Body>
      <hyp:Ws_Send_CardFiles>
         <hyp:WSID>20211234567896</hyp:WSID>
         <hyp:IssCode>PMT</hyp:IssCode>
         <hyp:CustAccount>ABCD123</hyp:CustAccount>        
         <hyp:SFTP>Test</hyp:SFTP>
      </hyp:Ws_Send_CardFiles>
   </soapenv:Body>
</soapenv:Envelope>
                                            Response
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
   <soap:Body>
      <Ws_Send_CardFilesResponse xmlns="http://www.globalprocessing.ae/HyperionWeb">
         <Ws_Send_CardFilesResult>
            <IssCode>PMT</IssCode>
            <CustAccount> ABCD123</CustAccount>            
            <SFTP>Test</SFTP>
            <WSID>20211234567896</WSID>
            <ActionCode>000</ActionCode>
         </Ws_Send_CardFilesResult>
      </Ws_Send_CardFilesResponse>
   </soap:Body>
</soap:Envelope>