POST Tenant/GetWeChatSMUserInfo

Request Information

URI Parameters

None.

Body Parameters

WeChatSMUserInfoRequest
NameDescriptionTypeAdditional information
iv

string

None.

encryptedData

string

None.

sessionkey

string

None.

Request Formats

application/json, text/json

Sample:
{
  "iv": "sample string 1",
  "encryptedData": "sample string 2",
  "sessionkey": "sample string 3"
}

application/xml, text/xml

Sample:
<WeChatSMUserInfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model">
  <EncryptedData>sample string 2</EncryptedData>
  <IV>sample string 1</IV>
  <Sessionkey>sample string 3</Sessionkey>
</WeChatSMUserInfoRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoteResponseOfWeChatSMUserInfoResponse
NameDescriptionTypeAdditional information
success

boolean

None.

errors

string

None.

unauthed

boolean

None.

result

WeChatSMUserInfoResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "errors": "sample string 2",
  "unauthed": true,
  "result": {
    "Mobile": "sample string 1",
    "UserId": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<RemoteResponseOfWeChatSMUserInfoResponsedmGyRm56 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">
  <Errors>sample string 2</Errors>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model">
    <d2p1:Mobile>sample string 1</d2p1:Mobile>
    <d2p1:UserId>sample string 2</d2p1:UserId>
  </Result>
  <Success>true</Success>
  <UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfWeChatSMUserInfoResponsedmGyRm56>