Migrate card

This method lets users store card details when they were previously stored locally. The paycard is sent in XML format.
We recommend that you first review the guide for this method.

📘

XML content only

Please note, the Store method accepts card details in XML format only. The above utility should not be used as it submits the content in JSON format.

<BankCardDetails xmlns="http://www.pcibooking.net/reservation" schemaVersion="1.0">
	<BankCard>
        <Type>Visa</Type>
        <Number>4918914107195005</Number>
        <NameOnCard>Juan Dela Cruz</NameOnCard>
        <ExpirationDate>
            <Month>07</Month>
            <Year>2020</Year>
        </ExpirationDate>
        <IssueNumber>2</IssueNumber>
        <CVV>123</CVV>
    </BankCard>
</BankCardDetails>

Once the Store Paycard method has bee completed successfully, a card token will be created and the token URI will be returned in the response header Location.
The card details submitted will also be returned in the response and the data will be masked.

📘

Access Token Vs. Session Token

Between the two options of using the Access Token or the Session Token, we would recommend using the Access Token.

📘

Multiple Authentication Methods allowed

This method accepts multiple forms of authentication methods (API Key, Session Token and Access Token). If more than one authentication method is provided, the Session Token will take precedence.

📘

CVV Retention Policy

Remember to set the CVV Retention Policy for this token.

Language
Click Try It! to start a request and see the response here!