Transact3


Click here for a complete list of operations.

ManageCardVault

Update Card Vault
UserName : ID of authorized SecureDecrypt user making request
Password : Password of authorized SecureDecrypt user making request
Transaction : Operation to be performed: [Create | Update]
CustomerPaymentInfoKey : For updates, required key of record to update.
CardNumber : Card Number to tokenize
ExpDate : Card expiration date
NameOnCard : Cardholder name
Street : Cardholder street address
Zip : Cardholder zip code
ExtData : Additional, device-specific data in XML format
Returned Values
<CardVaultResponse>
   <Result></Result>
   <Message></Message>
   <Token></Token>
   <CustomerPaymentInfoKey></CustomerPaymentInfoKey>
   <ExpDate></ExpDate>
   <NameOnCard></NameOnCard>
   <Street></Street>
   <Zip></Zip>
</CardVaultResponse>

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
UserName:
Password:
Transaction:
CustomerPaymentInfoKey:
Token:
CardNumber:
ExpDate:
NameOnCard:
Street:
Zip:
ExtData:

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /SmartPayments/transact3.asmx HTTP/1.1
Host: gateway.itstgate.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://TPISoft.com/SmartPayments/ManageCardVault"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <ManageCardVault xmlns="http://TPISoft.com/SmartPayments/">
      <UserName>string</UserName>
      <Password>string</Password>
      <Transaction>string</Transaction>
      <CustomerPaymentInfoKey>string</CustomerPaymentInfoKey>
      <Token>string</Token>
      <CardNumber>string</CardNumber>
      <ExpDate>string</ExpDate>
      <NameOnCard>string</NameOnCard>
      <Street>string</Street>
      <Zip>string</Zip>
      <ExtData>string</ExtData>
    </ManageCardVault>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <ManageCardVaultResponse xmlns="http://TPISoft.com/SmartPayments/">
      <ManageCardVaultResult>
        <CustomerPaymentInfoKey>string</CustomerPaymentInfoKey>
        <ExpDate>string</ExpDate>
        <NameOnCard>string</NameOnCard>
        <Street>string</Street>
        <Zip>string</Zip>
        <CardNumber>string</CardNumber>
      </ManageCardVaultResult>
    </ManageCardVaultResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /SmartPayments/transact3.asmx HTTP/1.1
Host: gateway.itstgate.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <ManageCardVault xmlns="http://TPISoft.com/SmartPayments/">
      <UserName>string</UserName>
      <Password>string</Password>
      <Transaction>string</Transaction>
      <CustomerPaymentInfoKey>string</CustomerPaymentInfoKey>
      <Token>string</Token>
      <CardNumber>string</CardNumber>
      <ExpDate>string</ExpDate>
      <NameOnCard>string</NameOnCard>
      <Street>string</Street>
      <Zip>string</Zip>
      <ExtData>string</ExtData>
    </ManageCardVault>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <ManageCardVaultResponse xmlns="http://TPISoft.com/SmartPayments/">
      <ManageCardVaultResult>
        <CustomerPaymentInfoKey>string</CustomerPaymentInfoKey>
        <ExpDate>string</ExpDate>
        <NameOnCard>string</NameOnCard>
        <Street>string</Street>
        <Zip>string</Zip>
        <CardNumber>string</CardNumber>
      </ManageCardVaultResult>
    </ManageCardVaultResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /SmartPayments/transact3.asmx/ManageCardVault?UserName=string&Password=string&Transaction=string&CustomerPaymentInfoKey=string&Token=string&CardNumber=string&ExpDate=string&NameOnCard=string&Street=string&Zip=string&ExtData=string HTTP/1.1
Host: gateway.itstgate.com
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<CardVaultResponse xmlns="http://TPISoft.com/SmartPayments/">
  <CustomerPaymentInfoKey>string</CustomerPaymentInfoKey>
  <ExpDate>string</ExpDate>
  <NameOnCard>string</NameOnCard>
  <Street>string</Street>
  <Zip>string</Zip>
  <CardNumber>string</CardNumber>
</CardVaultResponse>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /SmartPayments/transact3.asmx/ManageCardVault HTTP/1.1
Host: gateway.itstgate.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

UserName=string&Password=string&Transaction=string&CustomerPaymentInfoKey=string&Token=string&CardNumber=string&ExpDate=string&NameOnCard=string&Street=string&Zip=string&ExtData=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<CardVaultResponse xmlns="http://TPISoft.com/SmartPayments/">
  <CustomerPaymentInfoKey>string</CustomerPaymentInfoKey>
  <ExpDate>string</ExpDate>
  <NameOnCard>string</NameOnCard>
  <Street>string</Street>
  <Zip>string</Zip>
  <CardNumber>string</CardNumber>
</CardVaultResponse>