{"info":{"_postman_id":"0fdbdf98-1202-4c72-9c35-dab43cdde85e","name":"Mixpay API","description":"<html><head></head><body><p>Mixpay API provides the payment functions with Cryptocurrency. Clients get all the services by applying apikey and secretkey to access these functions and process the deposit and withdrawn transfer between their own customers with Cryptocurrency.</p>\n<p>The server url is : <a href=\"https://mixpay.org\">https://mixpay.org</a></p>\n<p>Before going into next steps, you need to get:</p>\n<ol>\n<li><strong>apikey</strong>, this is your clientid.</li>\n<li><strong>secretkey</strong>. this is used to sign your data when calling the APIs.</li>\n<li><strong>publickey</strong>. this is the public key which is used to verify the data sent back to you.</li>\n</ol>\n<p>About the <strong>sign</strong>:</p>\n<ol>\n<li>Please use <strong>RSA2</strong>, <strong>SHA256WithRSA</strong> algorithm to sign the data.</li>\n<li>The secretkey is following the <strong>PKCS8</strong> spec.</li>\n<li>The sign string format is using alphabetic order, '&amp;' connector.</li>\n</ol>\n<p>For example, when you sign the deposit request parameters, you should sign the string like this:\napikey=xxx&amp;coin=xxx&amp;orderId=xxx&amp;paytype=xxx&amp;signaturemethod=xxx&amp;signatureversion=xxx&amp;timestamp=xxx&amp;to=xxx, in it 'xxx' is your real parameter value.</p>\n<p>The sign code snippet in Java:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>public static final String KEY_ALGORITHM = \"RSA\";\npublic static final String SIGNATURE_ALGORITHM = \"SHA256WithRSA\";\n\npublic String sign(byte[] data, String privateKey) throws Exception {\n    final Base64.Encoder encoder = Base64.getEncoder();\n    final Base64.Decoder decoder = Base64.getDecoder();\n    byte[] keyBytes = decoder.decode(privateKey);\n    \n    PKCS8EncodedKeySpec pkcs8KeySpec = new PKCS8EncodedKeySpec(keyBytes);\n    \n    KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORITHM);\n    \n    PrivateKey priKey = keyFactory.generatePrivate(pkcs8KeySpec);\n    \n    Signature signature = Signature.getInstance(SIGNATURE_ALGORITHM);\n    signature.initSign(priKey);\n    signature.update(data);\n \n    return encoder.encodeToString(signature.sign());\n}\n</code></pre><p>The verify code snippet in Java:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>public static final String KEY_ALGORITHM = \"RSA\";\npublic static final String SIGNATURE_ALGORITHM = \"SHA256WithRSA\";\n\npublic static boolean verify(byte[] data, String publicKey, String sign) throws Exception {\n    final Base64.Decoder decoder = Base64.getDecoder();\n    final byte[] keyBytes = publicKey.getBytes(\"UTF-8\");\n    X509EncodedKeySpec keySpec = new X509EncodedKeySpec(decoder.decode(keyBytes));\n\n    KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORITHM);\n\n    PublicKey pubKey = keyFactory.generatePublic(keySpec);\n\n    Signature signature = Signature.getInstance(SIGNATURE_ALGORITHM);\n    signature.initVerify(pubKey);\n    signature.update(data);\n\n    return signature.verify(decoder.decode(sign));\n}\n</code></pre><p>Code snippet about how to use :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>String s= \"apikey=x5VcMFgDFdCKVfn50Id&amp;coin=eth&amp;orderId=762432433213124324&amp;paytype=digitalcurrency&amp;signaturemethod=SHA256WithRSA&amp;signatureversion=1.0&amp;timestamp=1586946803&amp;to=0xc107B21Ac56c4AFf547cC287b5c2B773D7A383AE\";\nString secretkey = \"your secretkey key\";\nString after_sign = sign(s.getBytes(), secretkey);\n</code></pre></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"10871408","collectionId":"0fdbdf98-1202-4c72-9c35-dab43cdde85e","publishedId":"SzYZ2eyD","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-04-01T20:34:04.000Z"},"item":[{"name":"Withdraw","id":"81992856-50d7-49b5-bab5-3eaabb9fa263","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"apikey\":\"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\r\n    \"orderId\":6823789339978248,\r\n    \"volume\":1.0,\r\n    \"paytype\":\"cryptocurrency\",\r\n    \"coin\":\"eth\",\r\n    \"to\":\"0x1a47780300c6fc6a36f122434266102f96a2a39e\",\r\n    \"signatureversion\":\"1.0\",\r\n    \"signaturemethod\":\"SHA256WithRSA\",\r\n    \"sign\":\"TmjYG80SiyXEneBsNxewAOGB7AFPm6nrkZh3vwRD+hWxBm/O2TOWs5KncroK1RZ75Cn9XJYLH+Nn6Zw/68Q7KsCKBGUrexIxqeeVQnun1I1PBC1PrCDjokzGEaci/Z7m3D+6DXY3Gqi0GM+NqhS7+Rk=\",\r\n    \"timestamp\":\"1579490024\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mixpay.org/api/withdraw","description":"<h2 id=\"this-is-the-withdraw-interface-you-can-request-transferring-to-other-cryptocurrenty-addresses\"><strong>This is the withdraw interface. You can request transferring to other Cryptocurrenty addresses.</strong></h2>\n<p>The returned data tells you whether the transfer is successful or not.</p>\n<p>Parameters:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"apikey\":\"MIIBIjANBgkqhkiG9w0BAIEvgIBADANBgkqhkiG9wQEFAAOCAQ8AMIIBCgKCAQ\", // apikey, Required\n    \"orderId\":6823789339978248, // Your client order id which you must keep unique for each of your requests, Required\n    \"volume\":1.0, // payment volume, Required\n    \"paytype\":\"cryptocurrency\", // payment method, set to cryptocurrency, Required\n    \"coin\":\"eth\", // coin used, BTC/ETH/USDT, Required\n    \"to\":\"the account of withdrawn\", // Required\n    \"payername\" : \"Huanglong\", // payer name, need to do urlencoding\n    \"payeename\" : \"Zhangsan\", // payee name, need to do urlencoding\n    \"signatureversion\":\"1.0\", // Required\n    \"signaturemethod\":\"SHA256WithRSA\", // Required\n    \"sign\":\"the signed data\", // the signed data with secretkey, the signed content is all other params except sign, in alphabetical order with &amp;key=value format, Required\n    \"timestamp\":\"1579490024\" // your order time happened\n}\n</code></pre><p>Response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 1,\n    \"msg\": \"success\",\n    \"data\": {\n        \"apikey\": \"\", // apikey\n        \"orderId\": \"\", // your orderId\n        \"paymentString\": \"\", // payment result data\n        \"sign\": \"\" // the signed data, you need to verify with the public key\n    }\n}\n</code></pre>","urlObject":{"protocol":"https","path":["api","withdraw"],"host":["mixpay","org"],"query":[],"variable":[]}},"response":[{"id":"5602fff7-8405-48ca-9af3-bc9c76598ab7","name":"Withdraw_DigitalCurrency","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"apikey\":\"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\r\n    \"orderId\":6823789339372041,\r\n    \"volume\":0.1,\r\n    \"paytype\":\"cryptocurrency\",\r\n    \"coin\":\"eth\",\r\n    \"to\":\"0x1a47780300c6fc6a36f122434266102f96a2a39e\",\r\n    \"signatureversion\":\"1.0\",\r\n    \"signaturemethod\":\"SHA256WithRSA\",\r\n    \"sign\":\"TmjYG80SiyXEneBsNxewAOGB7AFPm6nrkZh3vwRD+hWxBm/O2TOWs5KncroK1RZ75Cn9XJYLH+Nn6Zw/68Q7KsCKBGUrexIxqeeVQnun1I1PBC1PrCDjokzGEaci/Z7m3D+6DXY3Gqi0GM+NqhS7+Rk=\",\r\n    \"timestamp\":\"1589490024\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mixpay.org/api/withdraw"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 08 Apr 2020 21:13:30 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"close"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 1,\n    \"msg\": \"success\",\n    \"data\": {\n        \"apikey\": \"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\n        \"orderId\": \"6823789339372041\",\n        \"paymentString\": \"{\\\"orderid\\\":\\\"6823789339372041\\\",\\\"mixid\\\":\\\"M2020040905132742100006823789339372041\\\",\\\"status\\\":\\\"success\\\"}\",\n        \"sign\": \"oR6pp7qmfyTT8HcKDxIrdyoPhK3ZC9qymPrvaLJowKUJeQuKYWSAB2UazVghXHVX2h+V7ZJTwtq9iVvxAPwrOmLbmPg4TA5CuEh0fquz2oeM8QJ1p5hvXDglypUd0tF6+s5PiP4PPkUn2LgoczEN053AuwhRGOZmEkLAk8mqHjc=\"\n    }\n}"}],"_postman_id":"81992856-50d7-49b5-bab5-3eaabb9fa263"},{"name":"WebHook","id":"aef05fbe-477e-437e-821a-b5a3d28c7cf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"apikey\":\"MIGfMA0GCSqCj8xOuaiMU6wT6WRBmtLcuJ0vZO7LLsG8Onjfb6/b7aefvStCeecu/o/rsL0B7mteytKNZQIDAQAB\",\r\n    \"paytype\":\"cryptocurrency\",\r\n    \"url\":\"http://www.google.com/\",\r\n    \"sign\":\"TZJNYRADx4zB00mmw1NHKuDvDFtT5jrUECmmoj+haYPLRz4KU4YXNU8+T2aX0UulSOcyvp/8MKBgQCXW3ZPBoxmANyPiNWq1NrrPIGfMA0GCSqGSIb3DQEBACXW3ZPBoxsj+Xmn+pwvitiaEgJQH5wDKe8zYruh5sqMZtDnWqjM1OBb8vZxNnaqTeZ/yCgi7Vc=\",\r\n    \"signatureversion\":\"1.0\",\r\n    \"signaturemethod\":\"SHA256WithRSA\",\r\n    \"timestamp\":\"1577808000\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mixpay.org/api/askcallback","description":"<h2 id=\"you-can-call-this-api-to-set-your-callback-func-which-is-used-to-get-the-payment-result-you-only-need-to-set-it-once-if-you-change-the-callback-just-set-it-again-mixapi-will-use-the-latest-one-you-set\">You can call this API to set your callback func which is used to get the payment result. you ONLY need to set it once, if you change the callback, just set it again. Mixapi will use the latest one you set.</h2>\n<p>The callback will sent to you until mixpay get your correct response. Otherwise the callback will be sent to you always.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"apikey\":\"MIIBIjANBgkqhkiG9w0BAIEvgIBADANBgkqhkiG9wQEFAAOCAQ8AMIIBCgKCAQ\", // apikey, Required\n    \"paytype\":\"cryptocurrency\" // cryptocurrenty\n    \"url\":\"https://www.xxx.com\", // callback webhook, Required\n    \"direction\":0, // 0: deposit, 1: withdraw. If do not fill in this parameter, then deposit and withdraw will use the same callback\n    \"signatureversion\":\"1.0\", // Required\n    \"signaturemethod\":\"SHA256WithRSA\", // Required\n    \"sign\":\"ezMaqiMDgyl5Q%2B3ANaWOloXZNW6KU%2B0k0k0bTWAwSNpK%2BOXmlTHvRE6EpjG0y7MQU36OxxxXiWjsBukpeujcGl2ef5sCbZXT9fXu5EjlMEWCwkoGX2SzurywbJzdN%2FnLt2OHt%2FhlKQ3M8Y884qFgNMrCk7IXsdUUA6ZMPVPhfQEnV1VWb%2F\", // Required\n    \"timestamp\":\"1579490024\" // Required\n}\n</code></pre><p>Notice: callback webhook must return back the following data to let MIX know you have received the message.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"apikey\":\"MIIBIjANBgkqhkiG9w0BAIEvgIBADANBgkqhkiG9wQEFAAOCAQ8AMIIBCgKCAQ\", // apikey, Required\n    \"orderid\":6823789349978249, // Your order id, Required. In cryptocurrency deposit callback, please use mixid returned to you.\n    \"internal\":\"\" // other messages you want to tell\n}\n</code></pre><p>Notice : <strong>The following data will be sent to you with POST method, all the message fields will be made up as JSON format and sent to you. The signed data is the following data, too.</strong></p>\n<p>cryptocurrency withdraw webhook will return the following message:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"code\":1, // code=1\n\"mixid\":\"M2020041002243854400001938380981216019\", // mixpayid\n\"tx\":\"0xd8f6c0895df389dde4d1fbc189d471ebfcd4494302441410e6bd708eee7b110c\", // tx hash\n\"internal\":\"yes\", // internal transaction\n\"date\":\"2020-04-09 18:24:40\", // date happend of this tx\n\"digest\":\"8dc4780cc06707b65ada174257e739bc68ab3eae443ec9f3f30e69390f406f6d\", \n\"id\":\"3938\", // internal tx id\n\"sign\":\"Zmmr0BMWhH3jKwUBddqjL6+cJqh3Y2JrJk4to7IBP7VDW9JOLlCMTd2NaEzoBTovCrEvMt2RuEtn0ajoV1r4xTJMG061gaa4iTiy8pbRlpS1ldaqg8cb5KGcKNFXDnIEMdZpE1qoI0QWV3F9nZR/LPlz8msUueTGotzqhhSfWs=\"\n}\n</code></pre><p>cryptocurrency deposit webhook will return the following message:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"code\":1, // code=1\n\"mixid\":\"M2020041002243854400001938380981216019\", // mixpayid\n\"tx\":\"0xd8f6c0895df389dde4d1fbc189d471ebfcd4494302441410e6bd708eee7b110c\", // tx hash\n\"to\":\"0xdD0C7bE9bFAFBF294D2C7C13c408aa8a3d445532\" // the target address of the tx\n\"currency\":\"eth\", // coin transfered\n\"amount\":1.0, // amount\n\"date\":\"2020-04-09 18:24:40\", // date of the tx\n\"id\":\"3036\", // internal tx id\n\"tag\":\"\",\n\"internal\":\"yes\", // internal transaction or not\n\"sign\":\"Zmmr0BMWhH3jKwUBddqjL6+cJqh3Y2JrJk4to7IBP7VDW9JOLlCMTd2NaEzoBTovCrEvMt2RuEtn0ajoV1r4xTJMG061gaa4iTiy8pbRlpS1ldaqg8cb5KGcKNFXDnIEMdZpE1qoI0QWV3F9nZR/LPlz8msUueTGotzqhhSfWs=\"\n}\n</code></pre><p><strong>Example Code about your interface to get callback </strong></p>\n<p>Example 2:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>@ResponseBody\n@RequestMapping(\"/webhook/getcallbackvalue\")\npublic Result getcallbackvalue(HttpServletRequest request) {\n    Map&lt;String,String&gt; params = new HashMap&lt;String,String&gt;();\n    Map requestParams = request.getParameterMap();\n    // your code to analyze the param value\n}\n</code></pre>","urlObject":{"protocol":"https","path":["api","askcallback"],"host":["mixpay","org"],"query":[],"variable":[]}},"response":[{"id":"b713761a-9cc3-4087-80d7-c970a042737b","name":"WebHook","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"apikey\":\"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\r\n    \"paytype\":\"cryptocurrency\",\r\n    \"url\":\"http://www.google.com/\",\r\n    \"sign\":\"TZJNYRADx4zB00mmw1NHKuDvDFtT5jrUECmmoj+haYPLRz4KU4YXNU8+T2aX0UulSOcyvp/8MKBgQCXW3ZPBoxmANyPiNWq1NrrPIGfMA0GCSqGSIb3DQEBACXW3ZPBoxsj+Xmn+pwvitiaEgJQH5wDKe8zYruh5sqMZtDnWqjM1OBb8vZxNnaqTeZ/yCgi7Vc=\",\r\n    \"signatureversion\":\"1.0\",\r\n    \"signaturemethod\":\"SHA256WithRSA\",\r\n    \"timestamp\":\"1577808000\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mixpay.org/api/askcallback"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 08 Apr 2020 20:23:00 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"close"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 1,\n    \"msg\": \"success\",\n    \"data\": {\n        \"apikey\": \"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\n        \"callbackresult\": \"success\",\n        \"sign\": \"n8FjN8bu038cacYt2FlQmYPQqe9DmyaUUvU94dd1VfbUil8J0l0Kz7ewG1q4HderlW36hq7xoc6oI3iAkRlUPZTPF05eGHVOXMuPf04cgZyyPFtrFRhWRz7FGEvWf3cPC/nI16LkmjJL2uYZyfWFlrvizhU9ZixENRw2dqcqF0k=\"\n    }\n}"}],"_postman_id":"aef05fbe-477e-437e-821a-b5a3d28c7cf6"},{"name":"OrderList","id":"deda3789-9958-4ecd-9573-f87c7dc0ea60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"apikey\":\"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\r\n    \"paytype\":\"cryptocurrency\",\r\n    \"coin\":\"eth\",\r\n    \"sign\":\"TZJNYRADx4zB00mmw1NHKuDvDFtT5jrUECmmoj+haYPLRz4KU4YXNU8+T2aX0UulSOcyvp/8MKBgQCXW3ZPBoxmANyPiNWq1NrrPIGfMA0GCSqGSIb3DQEBACXW3ZPBoxsj+Xmn+pwvitiaEgJQH5wDKe8zYruh5sqMZtDnWqjM1OBb8vZxNnaqTeZ/yCgi7Vc=\",\r\n    \"signatureversion\":\"1.0\",\r\n    \"signaturemethod\":\"\",\r\n    \"fromtimestamp\":\"1567808000\",\r\n    \"totimestamp\":\"1597808000\",\r\n    \"timestamp\":\"1597808000\",\r\n    \"page\":1,\r\n    \"size\":1\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mixpay.org/api/orders","description":"<h2 id=\"get-the-detail-order-list\"><strong>Get the detail order list.</strong></h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"apikey\":\"MIIBIjANBgkqhkiG9w0BAIEvgIBADANBgkqhkiG9wQEFAAOCAQ8AMIIBCgKCAQ\", // apikey，Required\n    \"paytype\":\"cryptocurrency\", // cryptocurrency，Required\n    \"coin\":\"eth\", // btc/eth/usdt，Required\n    \"page\":1, // pageable no,int,Required\n    \"size\":10,// size of each page，int,Required\n    \"fromtimestamp\":1588291200000, // starttime of the search\n    \"totimestamp\":1588291200000, // endtime of the search\n    \"signatureversion\":\"1.0\",\n    \"signaturemethod\":\"SHA256WithRSA\",\n    \"sign\":\"the signed data\", // \n    \"timestamp\":\"1579490024\"\n}\n</code></pre><p>Response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 1,\n    \"msg\": \"success\",\n    \"data\": {\n        \"request\": {\n            \"apikey\": \"MIGfMA0GCSqGSIb3DQEBAQtCeecu/o/rsL0B7mteytKNZQIDAQAB\",\n            \"paytype\": \"cryptocurrency\",\n            \"coin\": \"eth\",\n            \"sign\": \"TZJNYRADx4zB00mmw1NHKuDvDFtT5jrUECmmoj+haYPLRz4KU4YXNU8+T2aX0UulSOcyvp/8MKBgQCXW3ZPBoxmANyPiNWq1NrrPIGfMA0GCSqGSIb3DQEBACXW3ZPBoxsj+Xmn+pwvitiaEgJQH5wDKe8zYruh5sqMZtDnWqjM1OBb8vZxNnaqTeZ/yCgi7Vc=\",\n            \"signatureversion\": \"1.0\",\n            \"signaturemethod\": \"\",\n            \"fromtimestamp\": \"1567808000\",\n            \"totimestamp\": \"1597808000\",\n            \"timestamp\": \"1597808000\",\n            \"page\": 1,\n            \"size\": 1\n        },\n        \"response\": {\n            \"total\": 12,\n            \"page\": 1,\n            \"size\": 1,\n            \"pages\": 1,\n            \"list\": [\n                {\n                    \"orderId\": 10233545679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586275200,\n                    \"status\": 1,\n                    \"amount\": 0\n                },\n                {\n                    \"orderId\": 1934387075679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 0,\n                    \"amount\": 0.1\n                },\n                {\n                    \"orderId\": 1938380071679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 1,\n                    \"amount\": 0.1\n                },\n                {\n                    \"orderId\": 1938380072679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 1,\n                    \"amount\": 0.1\n                },\n                {\n                    \"orderId\": 1938380075679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 1,\n                    \"amount\": 0.1\n                },\n                {\n                    \"orderId\": 1938380975679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 1,\n                    \"amount\": 0.1\n                },\n                {\n                    \"orderId\": 1943087975679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 0,\n                    \"amount\": 0\n                },\n                {\n                    \"orderId\": 1943287975679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586364242,\n                    \"status\": 1,\n                    \"amount\": 1\n                },\n                {\n                    \"orderId\": 1943387975079,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 0,\n                    \"amount\": 0.0001\n                },\n                {\n                    \"orderId\": 1943387975679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 0,\n                    \"amount\": 0.0001\n                },\n                {\n                    \"orderId\": 682289339978248,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1579490024,\n                    \"status\": 0,\n                    \"amount\": 1\n                },\n                {\n                    \"orderId\": 6823789339978248,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1579490024,\n                    \"status\": 0,\n                    \"amount\": 1\n                }\n            ]\n        },\n        \"sign\": \"FVHNsdDOj7rVHW9r+IBREWkWxyQ/wvd0ctlEMWM2ssUQyC0GAi0jmgQ1jYTWIa2jJNB2r7ZbuSBKJH+SjkqKJbbJzIR9MWKe4qFRBzC2MC/CEer1nHGi3eeAQYSW/cLxRR3UFmliDzK/FmuJY2bWVq7dZpZt7VLMG1A1iHk1Wi0=\" // sign data：the param of your request used in this API\n    }\n}\n</code></pre>","urlObject":{"protocol":"https","path":["api","orders"],"host":["mixpay","org"],"query":[],"variable":[]}},"response":[{"id":"74a88440-f334-433d-b5b9-8731215f83db","name":"OrderList_DigitalCurrency","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"apikey\":\"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\r\n    \"paytype\":\"cryptocurrency\",\r\n    \"coin\":\"eth\",\r\n    \"sign\":\"TZJNYRADx4zB00mmw1NHKuDvDFtT5jrUECmmoj+haYPLRz4KU4YXNU8+T2aX0UulSOcyvp/8MKBgQCXW3ZPBoxmANyPiNWq1NrrPIGfMA0GCSqGSIb3DQEBACXW3ZPBoxsj+Xmn+pwvitiaEgJQH5wDKe8zYruh5sqMZtDnWqjM1OBb8vZxNnaqTeZ/yCgi7Vc=\",\r\n    \"signatureversion\":\"1.0\",\r\n    \"signaturemethod\":\"\",\r\n    \"fromtimestamp\":\"1567808000\",\r\n    \"totimestamp\":\"1597808000\",\r\n    \"timestamp\":\"1597808000\",\r\n    \"page\":1,\r\n    \"size\":1\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mixpay.org/api/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 08 Apr 2020 20:20:42 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"close"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 1,\n    \"msg\": \"success\",\n    \"data\": {\n        \"request\": {\n            \"apikey\": \"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\n            \"paytype\": \"cryptocurrency\",\n            \"coin\": \"eth\",\n            \"sign\": \"TZJNYRADx4zB00mmw1NHKuDvDFtT5jrUECmmoj+haYPLRz4KU4YXNU8+T2aX0UulSOcyvp/8MKBgQCXW3ZPBoxmANyPiNWq1NrrPIGfMA0GCSqGSIb3DQEBACXW3ZPBoxsj+Xmn+pwvitiaEgJQH5wDKe8zYruh5sqMZtDnWqjM1OBb8vZxNnaqTeZ/yCgi7Vc=\",\n            \"signatureversion\": \"1.0\",\n            \"signaturemethod\": \"\",\n            \"fromtimestamp\": \"1567808000\",\n            \"totimestamp\": \"1597808000\",\n            \"timestamp\": \"1597808000\",\n            \"page\": 1,\n            \"size\": 1\n        },\n        \"response\": {\n            \"total\": 12,\n            \"page\": 1,\n            \"size\": 1,\n            \"pages\": 1,\n            \"list\": [\n                {\n                    \"orderId\": 10233545679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586275200,\n                    \"status\": 1,\n                    \"amount\": 0\n                },\n                {\n                    \"orderId\": 1934387075679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 0,\n                    \"amount\": 0.1\n                },\n                {\n                    \"orderId\": 1938380071679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 1,\n                    \"amount\": 0.1\n                },\n                {\n                    \"orderId\": 1938380072679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 1,\n                    \"amount\": 0.1\n                },\n                {\n                    \"orderId\": 1938380075679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 1,\n                    \"amount\": 0.1\n                },\n                {\n                    \"orderId\": 1938380975679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 1,\n                    \"amount\": 0.1\n                },\n                {\n                    \"orderId\": 1943087975679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 0,\n                    \"amount\": 0\n                },\n                {\n                    \"orderId\": 1943287975679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586364242,\n                    \"status\": 1,\n                    \"amount\": 1\n                },\n                {\n                    \"orderId\": 1943387975079,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 0,\n                    \"amount\": 0.0001\n                },\n                {\n                    \"orderId\": 1943387975679,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1586361559,\n                    \"status\": 0,\n                    \"amount\": 0.0001\n                },\n                {\n                    \"orderId\": 682289339978248,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1579490024,\n                    \"status\": 0,\n                    \"amount\": 1\n                },\n                {\n                    \"orderId\": 6823789339978248,\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"usertimestamp\": 1579490024,\n                    \"status\": 0,\n                    \"amount\": 1\n                }\n            ]\n        },\n        \"sign\": \"na9NFo+En/9dVgcfKcjLroGzd8yyDx2/U3/J3P9UsRcwBHoKqB6Q4UFSp8IxSKsTGWFdfBqnLeFFcoFd57HA1RBnaG7i04oX0+SLt8sPs704BewyXj20VqUFSWowkiWLU19C4wFbgEI/HniKz8xRpZgAF/bkINUKJFbdctD05qA=\"\n    }\n}"}],"_postman_id":"deda3789-9958-4ecd-9573-f87c7dc0ea60"},{"name":"Balance","id":"2a2dc344-de51-432d-92ee-dd47ca40faf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"apikey\":\"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\r\n    \"paytype\":\"cryptocurrency\",\r\n    \"coin\":\"eth\",\r\n    \"sign\":\"TZJNYRADx4zB00mmw1NHKuDvDFtT5jrUECmmoj+haYPLRz4KU4YXNU8+T2aX0UulSOcyvp/8MKBgQCXW3ZPBoxmANyPiNWq1NrrPIGfMA0GCSqGSIb3DQEBACXW3ZPBoxsj+Xmn+pwvitiaEgJQH5wDKe8zYruh5sqMZtDnWqjM1OBb8vZxNnaqTeZ/yCgi7Vc=\",\r\n    \"signatureversion\":\"1.0\",\r\n    \"signaturemethod\":\"\",\r\n    \"timestamp\":\"1597808000\",\r\n    \"page\":1,\r\n    \"size\":1\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mixpay.org/api/balance","description":"<h2 id=\"get-the-account-balance\"><strong>Get the account balance.</strong></h2>\n","urlObject":{"protocol":"https","path":["api","balance"],"host":["mixpay","org"],"query":[],"variable":[]}},"response":[{"id":"29344499-a9f0-4b84-adae-588b8162899e","name":"Balance_DigitalCurrency","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"apikey\":\"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\r\n    \"paytype\":\"cryptocurrency\",\r\n    \"coin\":\"eth\",\r\n    \"sign\":\"TZJNYRADx4zB00mmw1NHKuDvDFtT5jrUECmmoj+haYPLRz4KU4YXNU8+T2aX0UulSOcyvp/8MKBgQCXW3ZPBoxmANyPiNWq1NrrPIGfMA0GCSqGSIb3DQEBACXW3ZPBoxsj+Xmn+pwvitiaEgJQH5wDKe8zYruh5sqMZtDnWqjM1OBb8vZxNnaqTeZ/yCgi7Vc=\",\r\n    \"signatureversion\":\"1.0\",\r\n    \"signaturemethod\":\"\",\r\n    \"fromtimestamp\":\"1567808000\",\r\n    \"totimestamp\":\"1597808000\",\r\n    \"timestamp\":\"1597808000\",\r\n    \"page\":1,\r\n    \"size\":1\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mixpay.org/api/balance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 08 Apr 2020 20:19:17 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"close"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 1,\n    \"msg\": \"success\",\n    \"data\": {\n        \"request\": {\n            \"apikey\": \"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\n            \"paytype\": \"cryptocurrency\",\n            \"coin\": \"eth\",\n            \"sign\": \"\",\n            \"signatureversion\": \"1.0\",\n            \"signaturemethod\": \"\",\n            \"fromtimestamp\": \"1567808000\",\n            \"totimestamp\": \"1597808000\",\n            \"timestamp\": \"1597808000\",\n            \"page\": 1,\n            \"size\": 1\n        },\n        \"response\": {\n            \"total\": 1,\n            \"page\": 1,\n            \"size\": 1,\n            \"pages\": 1,\n            \"list\": [\n                {\n                    \"pay\": \"CRYPTOCURRENCY\",\n                    \"coin\": \"ETH\",\n                    \"balance\": 99.7\n                }\n            ]\n        },\n        \"sign\": \"nnbsI6CPBWHRN+UTtgBOeH8viaXavVNMzJ4YZfQl4rSsPz2SUBsq/mwJxz64410c8tUM3POuGXaq292LrzTnLlUE2qu/o9JJDLmoAn/ECzpTz0TWwOnqgJhf9UQftKfz2VGjlaN4TDuEC1zOC8DAYhd5McsjD+k/6BoGsZGWNJA=\"\n    }\n}"}],"_postman_id":"2a2dc344-de51-432d-92ee-dd47ca40faf8"},{"name":"Withdrawn Fee","id":"dabf37b9-57e4-4ff7-bdee-3586b594cfb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n \"apikey\":\"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\r\n \"paytype\":\"cryptocurrency\",\r\n \"coin\":\"btc\",\r\n \"signatureversion\":\"1.0\",\r\n \"signaturemethod\":\"SHA256WithRSA\",\r\n \"sign\":\"XPilFAzZM57upV/Rd5H2HigUiqjEEFD5Zlrja8UPLbhVLYS5lf3lvDA2bhUXT+EAtrqWmmiwe9x/kBFhkN0UmCbDpaA+W7+IbxmefCGdnxvYofeqnXlM0/rFLn/vX2mOe12WFjbZgFBa/5d1emg7v+TG3u/IPsZDKXhBmRsJIOdSjFFdokLc6MNxt2PhzB23Bgn/VAY3kECS9QPl12PSGuyC9nBpUTNyw9xlDJL8O/Cca9Aq8t8crk9eJevYmMeLQW91LAOQXmopxqpX5EbtPsPDpnIHZQiXlEgWUqfGr9MfjJcUhWwAgvA27Ub1V2/603gcao+YL0cKP6Zpp2sroA==\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mixpay.org/api/withdrawnfee","urlObject":{"protocol":"https","path":["api","withdrawnfee"],"host":["mixpay","org"],"query":[],"variable":[]}},"response":[{"id":"c68fdfde-0093-49be-b387-d1d345717aee","name":"Withdrawn Fee","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n \"apikey\":\"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\r\n \"paytype\":\"cryptocurrency\",\r\n \"coin\":\"btc\",\r\n \"signatureversion\":\"1.0\",\r\n \"signaturemethod\":\"SHA256WithRSA\",\r\n \"sign\":\"XPilFAzZM57upV/Rd5H2HigUiqjEEFD5Zlrja8UPLbhVLYS5lf3lvDA2bhUXT+EAtrqWmmiwe9x/kBFhkN0UmCbDpaA+W7+IbxmefCGdnxvYofeqnXlM0/rFLn/vX2mOe12WFjbZgFBa/5d1emg7v+TG3u/IPsZDKXhBmRsJIOdSjFFdokLc6MNxt2PhzB23Bgn/VAY3kECS9QPl12PSGuyC9nBpUTNyw9xlDJL8O/Cca9Aq8t8crk9eJevYmMeLQW91LAOQXmopxqpX5EbtPsPDpnIHZQiXlEgWUqfGr9MfjJcUhWwAgvA27Ub1V2/603gcao+YL0cKP6Zpp2sroA==\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mixpay.org/api/withdrawnfee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.1"},{"key":"Date","value":"Tue, 23 Jun 2020 12:11:17 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15768000"},{"key":"Cache-Control","value":"no-cache"},{"key":"Cache-Control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 1,\n    \"msg\": \"success\",\n    \"msgCn\": \"success\",\n    \"data\": {\n        \"canWithdraw\": true,\n        \"canDeposit\": true,\n        \"fee\": 0,\n        \"minWithDraw\": 0.0001\n    }\n}"}],"_postman_id":"dabf37b9-57e4-4ff7-bdee-3586b594cfb4"},{"name":"NewAddress","id":"fc89ff45-5142-437f-a1e3-26636c50fffc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"apikey\":\"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\r\n    \"label\":6823780331570388,\r\n    \"coin\":\"btc\",\r\n    \"signatureversion\":\"1.0\",\r\n    \"signaturemethod\":\"SHA256WithRSA\",\r\n    \"sign\":\"grBvMfmJMhw+YVYAg8CTeaXLDTU5ZJ3KzTzjMcMcW4VcWnOWmse/dTF7rCAEIOsPX1vQA48HA4l2W1cpqCa4Zo5q2kG5IW/qUYXPwcMz6Ms4sPKMZ6UaiBZjKKTgw+z7aUDcYHIls5/7X2MD54aVYgEee6eKkxtND6UnaPvvF7arOC3zGWoJ1YNWTYu5sK1dM/pVfLNgJJyd82gUHlMlvN8q1Kd/NMtcc0VV8M5j4XutmmiSKOHz8QKUBh0PbXGwyyBA/3Hpd46STR8NaAIbLGLEbL7VXVrfnpOtGQ/eASBcsEBo1s07W7JGjv8X3n5sZQeSYQ31IZuP60+rynW5tg==\",\r\n    \"timestamp\":\"1579490024\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mixpay.org/api/newaddress","description":"<h2 id=\"this-interface-generate-the-new-address-for-specified-label\"><strong>This interface generate the new address for specified label.</strong></h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"apikey\":\"MIIBIjANBgkqhkiG9w0BAIEvgIBADANBgkqhkiG9wQEFAAOCAQ8AMIIBCgKCAQ\", // apikey, Required\n    \"coin\":\"btc\", // btc/eth/usdt, Required\n    \"label\":\"12345\", // label of your user\n    \"signatureversion\":\"1.0\",\n    \"signaturemethod\":\"SHA256WithRSA\",\n    \"sign\":\"the signed data\", \n    \"timestamp\":\"1579490024\"\n}\n</code></pre>","urlObject":{"protocol":"https","path":["api","newaddress"],"host":["mixpay","org"],"query":[],"variable":[]}},"response":[{"id":"43c2b055-df76-477b-b63a-c7281ad7a6c2","name":"NewAddress","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"apikey\":\"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\r\n    \"label\":6823780331570388,\r\n    \"coin\":\"btc\",\r\n    \"signatureversion\":\"1.0\",\r\n    \"signaturemethod\":\"SHA256WithRSA\",\r\n    \"sign\":\"grBvMfmJMhw+YVYAg8CTeaXLDTU5ZJ3KzTzjMcMcW4VcWnOWmse/dTF7rCAEIOsPX1vQA48HA4l2W1cpqCa4Zo5q2kG5IW/qUYXPwcMz6Ms4sPKMZ6UaiBZjKKTgw+z7aUDcYHIls5/7X2MD54aVYgEee6eKkxtND6UnaPvvF7arOC3zGWoJ1YNWTYu5sK1dM/pVfLNgJJyd82gUHlMlvN8q1Kd/NMtcc0VV8M5j4XutmmiSKOHz8QKUBh0PbXGwyyBA/3Hpd46STR8NaAIbLGLEbL7VXVrfnpOtGQ/eASBcsEBo1s07W7JGjv8X3n5sZQeSYQ31IZuP60+rynW5tg==\",\r\n    \"timestamp\":\"1579490024\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mixpay.org/api/newaddress"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.1"},{"key":"Date","value":"Mon, 29 Jun 2020 10:43:41 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15768000"},{"key":"Cache-Control","value":"no-cache"},{"key":"Cache-Control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 1,\n    \"msg\": \"success\",\n    \"msgCn\": \"成功\",\n    \"data\": {\n        \"apikey\": \"MIGfMA0GCSqMIGfMA0GCSqGSIb3DQE6WRBmtLcuJ0vZO7LLsG8Onjfb6\",\n        \"orderId\": \"null\",\n        \"paymentString\": \"WalletServiceDepositResponse(address=my8iReh1vU3ZS4YZWGFCH3JXjPsB9fxq14, tag=null)\",\n        \"sign\": \"jUOcx9PjIPSuNNNxvDBBpkpheGabHl56SP1zbTFWvEP4zIkkduh0CQyFF/KR92eK16IoyarlmZZ79S6+daOEjzoCk0MxzP4L0Bv4hltg60RTkDgHuJ9iu+cBnrTOev3M0/uw6ZEx9+ZP263HyvhzfY7KYZp2nximA0ME85wzPVc=\"\n    }\n}"}],"_postman_id":"fc89ff45-5142-437f-a1e3-26636c50fffc"}],"event":[{"listen":"prerequest","script":{"id":"c7aa9835-2727-43a5-a8b7-035e2e0cecc0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4b9e9580-26a3-4128-8ba2-055bcfabd275","type":"text/javascript","exec":[""]}}]}