Card
Get Card Privacy Information (Encrypted JSON)
GET
Retrieves the card privacy JSON encrypted information (PCI must be enabled).
Request Headers
string
required
apiKey (merchant credential, bound to IP whitelist)
string
required
Unix timestamp in milliseconds. The deviation from the server time must be within 60 seconds, and future timestamps are not accepted.
string
required
Login token (required for all interfaces except Get Token).
string
default:"application/json"
Fixed to
application/jsonPath Parameters
string
required
Card order number.
Response Parameters
number
Response status code.
0 indicates success.string
Response message.
string
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.