GetUserData
Description
This method is used to search the user database using userInternalId.
Syntax
UserData GetUserData (SecurityToken securityToken, string userInternalId)
Arguments
Type | Name | Description |
---|---|---|
SecurityToken | securityToken | Merchant security token: used to identify merchant and validate transaction. (required) |
string | userInternalId | Unique user ID assigned by the internal system. (required) |
Return Value
Type | Description |
---|---|
UserData | This object contains all user information. |
Examples
Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ebiz="http://eBizCharge.ServiceModel.SOAP">
<soapenv:Header/>
<soapenv:Body>
<ebiz:GetUserData>
<ebiz:securityToken>
<ebiz:SecurityId></ebiz:SecurityId>
<ebiz:UserId>portal01</ebiz:UserId>
<ebiz:Password>pOr1285!</ebiz:Password>
</ebiz:securityToken>
<ebiz:userInternalId></ebiz:userInternalId>
</ebiz:GetUserData>
</soapenv:Body>
</soapenv:Envelope>
Response:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<s:Fault>
<faultcode></faultcode>
<faultstring xml:lang="en-US"></faultstring>
</s:Fault>
</s:Body>
</s:Envelope>
Updated about 1 year ago