Get Account Information

Request Service

  • getAccount

Request Method:

  • POST

Request Sample:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.example.org/">
    <SOAP-ENV:Body>
        <ns1:callService>
            <paramsJson></paramsJson>
            <appToken>appToken</appToken>
            <appKey>appKey</appKey>
            <service>getAccount</service>
        </ns1:callService>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Response Sample:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<SOAP-ENV:Envelope xmlns:ns1="http://www.example.org/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
        <ns1:callServiceResponse>
            <response>
                {
                  "ask":"Success",
                  "data":{
                    "account_balance":"",
                    "company_code":"XX",
                    "company_name":"公司名称",
                    "currency":"USD",
                    "freeze_amount":""
                  },
                  "message":"Success",
                  "nextPage":false
                }
            </response>
        </ns1:callServiceResponse>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Response Parameter:

Parameter Type Remark
account_balance String Account Balance
company_code String Company Code
company_name String Company Name
currency String Currency
freeze_amount String Freeze Amount
作者:WesternPost  创建时间:2021-06-30 00:19
 更新时间:2024-12-31 02:56