Card
Get Card Privacy Information (Encrypted JSON)
GET
Retrieves the card privacy JSON encrypted information (PCI must be enabled).
Request Headers
apiKey (merchant credential, bound to IP whitelist)
Unix timestamp in milliseconds. The deviation from the server time must be within 60 seconds, and future timestamps are not accepted.
Login token (required for all interfaces except Get Token).
Fixed to
application/jsonPath Parameters
Card order number.
Response Parameters
Response status code.
0 indicates success.Response message.
A JSON string encrypted with AES/ECB/PKCS5Padding + Base64. After decrypting it with the
apiSecret from the merchant’s current available API credentials, you will get the following JSON structure:Permission Notes: PCI must be enabled for the merchant before this endpoint can be called. If not enabled, error code 1013 is returned.Decryption Method: Use the merchant’s current available API credential’s
apiSecret, Base64-decode data, and then decrypt it with the AES/ECB/PKCS5Padding algorithm to obtain the plaintext JSON. See “Code Utilities” for details.