Admin


Click here for a complete list of operations.

InfoUser

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
Username:
SecureToken:
VendorKey:
TargetUsername:
ExtData:

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /admin/ws/admin.asmx HTTP/1.1
Host: secure.redfinnet.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.tpisoft.com/Admin/ws/InfoUser"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <InfoUser xmlns="http://www.tpisoft.com/Admin/ws">
      <Username>string</Username>
      <SecureToken>string</SecureToken>
      <VendorKey>string</VendorKey>
      <TargetUsername>string</TargetUsername>
      <ExtData>string</ExtData>
    </InfoUser>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <InfoUserResponse xmlns="http://www.tpisoft.com/Admin/ws">
      <InfoUserResult>
        <FirstName>string</FirstName>
        <LastName>string</LastName>
        <Email>string</Email>
        <Street1>string</Street1>
        <Street2>string</Street2>
        <City>string</City>
        <State>string</State>
        <Zip>string</Zip>
        <Country>string</Country>
        <DayPhone>string</DayPhone>
        <Fax>string</Fax>
        <Status>string</Status>
        <UserSecurityLevel>string</UserSecurityLevel>
        <SysSecurityLevel>string</SysSecurityLevel>
        <MerchantGroupXml>string</MerchantGroupXml>
        <ExtData>string</ExtData>
      </InfoUserResult>
    </InfoUserResponse>
  </soap:Body>
</soap:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /admin/ws/admin.asmx/InfoUser?Username=string&SecureToken=string&VendorKey=string&TargetUsername=string&ExtData=string HTTP/1.1
Host: secure.redfinnet.com
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<UserResult xmlns="http://www.tpisoft.com/Admin/ws">
  <FirstName>string</FirstName>
  <LastName>string</LastName>
  <Email>string</Email>
  <Street1>string</Street1>
  <Street2>string</Street2>
  <City>string</City>
  <State>string</State>
  <Zip>string</Zip>
  <Country>string</Country>
  <DayPhone>string</DayPhone>
  <Fax>string</Fax>
  <Status>string</Status>
  <UserSecurityLevel>string</UserSecurityLevel>
  <SysSecurityLevel>string</SysSecurityLevel>
  <MerchantGroupXml>string</MerchantGroupXml>
  <ExtData>string</ExtData>
</UserResult>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /admin/ws/admin.asmx/InfoUser HTTP/1.1
Host: secure.redfinnet.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

Username=string&SecureToken=string&VendorKey=string&TargetUsername=string&ExtData=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<UserResult xmlns="http://www.tpisoft.com/Admin/ws">
  <FirstName>string</FirstName>
  <LastName>string</LastName>
  <Email>string</Email>
  <Street1>string</Street1>
  <Street2>string</Street2>
  <City>string</City>
  <State>string</State>
  <Zip>string</Zip>
  <Country>string</Country>
  <DayPhone>string</DayPhone>
  <Fax>string</Fax>
  <Status>string</Status>
  <UserSecurityLevel>string</UserSecurityLevel>
  <SysSecurityLevel>string</SysSecurityLevel>
  <MerchantGroupXml>string</MerchantGroupXml>
  <ExtData>string</ExtData>
</UserResult>