感谢您的访问。此页面目前仅提供英语版本。我们正在开发中文版本。谢谢您的理解。

Payload Data Structure

There are two payload structures, encrypted and plain text. Both are JSON objects, and examples are shown below.

  • Encrypted: For information on how to process this payload, see the How to decrypt credentials section.
    
    {
    	"encryptedKey": "<encrypted-data>",
    	"encryptedPayload":"<encrypted-data>",
    	"iv":"<value>",
    	"sigKeyID":"<value>",
    	"signature":"<encrypted-data>"
    }
    		
  • Plain text: For information on how to process this payload, see the How to process plain text credentials section.
    
    {
    	"merchant_id":"YOUR_MERCHANT_ID",
    	"access_key":"YOUR_ACCESS_KEY",
    	"secret_key":"YOUR_SECRET_KEY",
    	"client_id":"YOUR_CLIENT_ID",
    	"client_secret":"YOUR_CLIENT_SECRET"
    }