DonorHubWebService


Click here for a complete list of operations.

MyWebUser_GetInfo

Returns detailed information about the current web user.

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
SessionID:

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 /dataqueryservice.asmx HTTP/1.1
Host: local-mytntware-com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "donorhub.tntware.com/MyWebUser_GetInfo"

<?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>
    <MyWebUser_GetInfo xmlns="donorhub.tntware.com">
      <SessionID>string</SessionID>
    </MyWebUser_GetInfo>
  </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>
    <MyWebUser_GetInfoResponse xmlns="donorhub.tntware.com">
      <MyWebUser_GetInfoResult>
        <WebUserID>int</WebUserID>
        <SsoCode>string</SsoCode>
        <FirstName>string</FirstName>
        <LastName>string</LastName>
        <UserName>string</UserName>
        <Email>string</Email>
        <TimeZone>string</TimeZone>
        <SsoLastLogin>dateTime</SsoLastLogin>
        <SsoEmail>string</SsoEmail>
        <SsoEmailVerified>boolean</SsoEmailVerified>
        <SsoProviderID>string</SsoProviderID>
        <SsoRawInfo>string</SsoRawInfo>
        <SsoEditLink>string</SsoEditLink>
        <SsoFirstName>string</SsoFirstName>
        <SsoLastName>string</SsoLastName>
        <SsoTimeZone>string</SsoTimeZone>
        <IsGuest>boolean</IsGuest>
        <EnableLogin>boolean</EnableLogin>
        <IsLockedOut>boolean</IsLockedOut>
        <LockedoutUntil>dateTime</LockedoutUntil>
        <InvitationCode>string</InvitationCode>
        <InvitationCode_ExpiresAt>dateTime</InvitationCode_ExpiresAt>
        <InvitationCode_IsExpired>boolean</InvitationCode_IsExpired>
        <HasPassword>boolean</HasPassword>
        <IsRegistered>boolean</IsRegistered>
        <LastLogin>dateTime</LastLogin>
        <LastLoginPassword>dateTime</LastLoginPassword>
        <LastLoginSSO>dateTime</LastLoginSSO>
        <LastLoginOAuth>dateTime</LastLoginOAuth>
        <StaffProfiles>
          <StaffProfileInfo>
            <Code>string</Code>
            <Description>string</Description>
            <ReceiveGiveSiteNotifications>boolean</ReceiveGiveSiteNotifications>
            <OnlyShowDonorID>boolean</OnlyShowDonorID>
            <IncludePrivateDonorDetails>boolean</IncludePrivateDonorDetails>
            <Designations xsi:nil="true" />
            <DesignationWildcards xsi:nil="true" />
            <Funds xsi:nil="true" />
            <FundWildcards xsi:nil="true" />
          </StaffProfileInfo>
          <StaffProfileInfo>
            <Code>string</Code>
            <Description>string</Description>
            <ReceiveGiveSiteNotifications>boolean</ReceiveGiveSiteNotifications>
            <OnlyShowDonorID>boolean</OnlyShowDonorID>
            <IncludePrivateDonorDetails>boolean</IncludePrivateDonorDetails>
            <Designations xsi:nil="true" />
            <DesignationWildcards xsi:nil="true" />
            <Funds xsi:nil="true" />
            <FundWildcards xsi:nil="true" />
          </StaffProfileInfo>
        </StaffProfiles>
        <DonorProfiles>
          <GiveProfileInfo>
            <Code>string</Code>
            <Description>string</Description>
            <DonorCode>string</DonorCode>
            <DonorAccounts xsi:nil="true" />
            <NumberOfGivePlans>int</NumberOfGivePlans>
            <NumberOfGivePayments>int</NumberOfGivePayments>
          </GiveProfileInfo>
          <GiveProfileInfo>
            <Code>string</Code>
            <Description>string</Description>
            <DonorCode>string</DonorCode>
            <DonorAccounts xsi:nil="true" />
            <NumberOfGivePlans>int</NumberOfGivePlans>
            <NumberOfGivePayments>int</NumberOfGivePayments>
          </GiveProfileInfo>
        </DonorProfiles>
        <NumberOfGiveMethods>int</NumberOfGiveMethods>
        <HasProfile>boolean</HasProfile>
        <IsTntWare>boolean</IsTntWare>
        <IsAdmin>boolean</IsAdmin>
        <IsUserMgr>boolean</IsUserMgr>
        <IsBillingMgr>boolean</IsBillingMgr>
        <ShowBillingFeature>boolean</ShowBillingFeature>
        <ShowBillingMangerRole>boolean</ShowBillingMangerRole>
        <IsTranslator>boolean</IsTranslator>
        <IsPrimaryContact>boolean</IsPrimaryContact>
        <IsAlternateContact>boolean</IsAlternateContact>
        <IsBillingContact>boolean</IsBillingContact>
        <WasInvited>boolean</WasInvited>
        <InvitationSentOn>dateTime</InvitationSentOn>
        <InvitationSentTo>string</InvitationSentTo>
        <IsImpersonated>boolean</IsImpersonated>
      </MyWebUser_GetInfoResult>
    </MyWebUser_GetInfoResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

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

POST /dataqueryservice.asmx HTTP/1.1
Host: local-mytntware-com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <MyWebUser_GetInfo xmlns="donorhub.tntware.com">
      <SessionID>string</SessionID>
    </MyWebUser_GetInfo>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <MyWebUser_GetInfoResponse xmlns="donorhub.tntware.com">
      <MyWebUser_GetInfoResult>
        <WebUserID>int</WebUserID>
        <SsoCode>string</SsoCode>
        <FirstName>string</FirstName>
        <LastName>string</LastName>
        <UserName>string</UserName>
        <Email>string</Email>
        <TimeZone>string</TimeZone>
        <SsoLastLogin>dateTime</SsoLastLogin>
        <SsoEmail>string</SsoEmail>
        <SsoEmailVerified>boolean</SsoEmailVerified>
        <SsoProviderID>string</SsoProviderID>
        <SsoRawInfo>string</SsoRawInfo>
        <SsoEditLink>string</SsoEditLink>
        <SsoFirstName>string</SsoFirstName>
        <SsoLastName>string</SsoLastName>
        <SsoTimeZone>string</SsoTimeZone>
        <IsGuest>boolean</IsGuest>
        <EnableLogin>boolean</EnableLogin>
        <IsLockedOut>boolean</IsLockedOut>
        <LockedoutUntil>dateTime</LockedoutUntil>
        <InvitationCode>string</InvitationCode>
        <InvitationCode_ExpiresAt>dateTime</InvitationCode_ExpiresAt>
        <InvitationCode_IsExpired>boolean</InvitationCode_IsExpired>
        <HasPassword>boolean</HasPassword>
        <IsRegistered>boolean</IsRegistered>
        <LastLogin>dateTime</LastLogin>
        <LastLoginPassword>dateTime</LastLoginPassword>
        <LastLoginSSO>dateTime</LastLoginSSO>
        <LastLoginOAuth>dateTime</LastLoginOAuth>
        <StaffProfiles>
          <StaffProfileInfo>
            <Code>string</Code>
            <Description>string</Description>
            <ReceiveGiveSiteNotifications>boolean</ReceiveGiveSiteNotifications>
            <OnlyShowDonorID>boolean</OnlyShowDonorID>
            <IncludePrivateDonorDetails>boolean</IncludePrivateDonorDetails>
            <Designations xsi:nil="true" />
            <DesignationWildcards xsi:nil="true" />
            <Funds xsi:nil="true" />
            <FundWildcards xsi:nil="true" />
          </StaffProfileInfo>
          <StaffProfileInfo>
            <Code>string</Code>
            <Description>string</Description>
            <ReceiveGiveSiteNotifications>boolean</ReceiveGiveSiteNotifications>
            <OnlyShowDonorID>boolean</OnlyShowDonorID>
            <IncludePrivateDonorDetails>boolean</IncludePrivateDonorDetails>
            <Designations xsi:nil="true" />
            <DesignationWildcards xsi:nil="true" />
            <Funds xsi:nil="true" />
            <FundWildcards xsi:nil="true" />
          </StaffProfileInfo>
        </StaffProfiles>
        <DonorProfiles>
          <GiveProfileInfo>
            <Code>string</Code>
            <Description>string</Description>
            <DonorCode>string</DonorCode>
            <DonorAccounts xsi:nil="true" />
            <NumberOfGivePlans>int</NumberOfGivePlans>
            <NumberOfGivePayments>int</NumberOfGivePayments>
          </GiveProfileInfo>
          <GiveProfileInfo>
            <Code>string</Code>
            <Description>string</Description>
            <DonorCode>string</DonorCode>
            <DonorAccounts xsi:nil="true" />
            <NumberOfGivePlans>int</NumberOfGivePlans>
            <NumberOfGivePayments>int</NumberOfGivePayments>
          </GiveProfileInfo>
        </DonorProfiles>
        <NumberOfGiveMethods>int</NumberOfGiveMethods>
        <HasProfile>boolean</HasProfile>
        <IsTntWare>boolean</IsTntWare>
        <IsAdmin>boolean</IsAdmin>
        <IsUserMgr>boolean</IsUserMgr>
        <IsBillingMgr>boolean</IsBillingMgr>
        <ShowBillingFeature>boolean</ShowBillingFeature>
        <ShowBillingMangerRole>boolean</ShowBillingMangerRole>
        <IsTranslator>boolean</IsTranslator>
        <IsPrimaryContact>boolean</IsPrimaryContact>
        <IsAlternateContact>boolean</IsAlternateContact>
        <IsBillingContact>boolean</IsBillingContact>
        <WasInvited>boolean</WasInvited>
        <InvitationSentOn>dateTime</InvitationSentOn>
        <InvitationSentTo>string</InvitationSentTo>
        <IsImpersonated>boolean</IsImpersonated>
      </MyWebUser_GetInfoResult>
    </MyWebUser_GetInfoResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

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

GET /dataqueryservice.asmx/MyWebUser_GetInfo?SessionID=string HTTP/1.1
Host: local-mytntware-com
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<WebUserInfo xmlns="donorhub.tntware.com">
  <WebUserID>int</WebUserID>
  <SsoCode>string</SsoCode>
  <FirstName>string</FirstName>
  <LastName>string</LastName>
  <UserName>string</UserName>
  <Email>string</Email>
  <TimeZone>string</TimeZone>
  <SsoLastLogin>dateTime</SsoLastLogin>
  <SsoEmail>string</SsoEmail>
  <SsoEmailVerified>boolean</SsoEmailVerified>
  <SsoProviderID>string</SsoProviderID>
  <SsoRawInfo>string</SsoRawInfo>
  <SsoEditLink>string</SsoEditLink>
  <SsoFirstName>string</SsoFirstName>
  <SsoLastName>string</SsoLastName>
  <SsoTimeZone>string</SsoTimeZone>
  <IsGuest>boolean</IsGuest>
  <EnableLogin>boolean</EnableLogin>
  <IsLockedOut>boolean</IsLockedOut>
  <LockedoutUntil>dateTime</LockedoutUntil>
  <InvitationCode>string</InvitationCode>
  <InvitationCode_ExpiresAt>dateTime</InvitationCode_ExpiresAt>
  <InvitationCode_IsExpired>boolean</InvitationCode_IsExpired>
  <HasPassword>boolean</HasPassword>
  <IsRegistered>boolean</IsRegistered>
  <LastLogin>dateTime</LastLogin>
  <LastLoginPassword>dateTime</LastLoginPassword>
  <LastLoginSSO>dateTime</LastLoginSSO>
  <LastLoginOAuth>dateTime</LastLoginOAuth>
  <StaffProfiles>
    <StaffProfileInfo>
      <Code>string</Code>
      <Description>string</Description>
      <ReceiveGiveSiteNotifications>boolean</ReceiveGiveSiteNotifications>
      <OnlyShowDonorID>boolean</OnlyShowDonorID>
      <IncludePrivateDonorDetails>boolean</IncludePrivateDonorDetails>
      <Designations>
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Designations>
      <DesignationWildcards>
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </DesignationWildcards>
      <Funds>
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Funds>
      <FundWildcards>
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </FundWildcards>
    </StaffProfileInfo>
    <StaffProfileInfo>
      <Code>string</Code>
      <Description>string</Description>
      <ReceiveGiveSiteNotifications>boolean</ReceiveGiveSiteNotifications>
      <OnlyShowDonorID>boolean</OnlyShowDonorID>
      <IncludePrivateDonorDetails>boolean</IncludePrivateDonorDetails>
      <Designations>
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Designations>
      <DesignationWildcards>
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </DesignationWildcards>
      <Funds>
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Funds>
      <FundWildcards>
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </FundWildcards>
    </StaffProfileInfo>
  </StaffProfiles>
  <DonorProfiles>
    <GiveProfileInfo>
      <Code>string</Code>
      <Description>string</Description>
      <DonorCode>string</DonorCode>
      <DonorAccounts>
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </DonorAccounts>
      <NumberOfGivePlans>int</NumberOfGivePlans>
      <NumberOfGivePayments>int</NumberOfGivePayments>
    </GiveProfileInfo>
    <GiveProfileInfo>
      <Code>string</Code>
      <Description>string</Description>
      <DonorCode>string</DonorCode>
      <DonorAccounts>
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </DonorAccounts>
      <NumberOfGivePlans>int</NumberOfGivePlans>
      <NumberOfGivePayments>int</NumberOfGivePayments>
    </GiveProfileInfo>
  </DonorProfiles>
  <NumberOfGiveMethods>int</NumberOfGiveMethods>
  <HasProfile>boolean</HasProfile>
  <IsTntWare>boolean</IsTntWare>
  <IsAdmin>boolean</IsAdmin>
  <IsUserMgr>boolean</IsUserMgr>
  <IsBillingMgr>boolean</IsBillingMgr>
  <ShowBillingFeature>boolean</ShowBillingFeature>
  <ShowBillingMangerRole>boolean</ShowBillingMangerRole>
  <IsTranslator>boolean</IsTranslator>
  <IsPrimaryContact>boolean</IsPrimaryContact>
  <IsAlternateContact>boolean</IsAlternateContact>
  <IsBillingContact>boolean</IsBillingContact>
  <WasInvited>boolean</WasInvited>
  <InvitationSentOn>dateTime</InvitationSentOn>
  <InvitationSentTo>string</InvitationSentTo>
  <IsImpersonated>boolean</IsImpersonated>
</WebUserInfo>

HTTP POST

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

POST /dataqueryservice.asmx/MyWebUser_GetInfo HTTP/1.1
Host: local-mytntware-com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

SessionID=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<WebUserInfo xmlns="donorhub.tntware.com">
  <WebUserID>int</WebUserID>
  <SsoCode>string</SsoCode>
  <FirstName>string</FirstName>
  <LastName>string</LastName>
  <UserName>string</UserName>
  <Email>string</Email>
  <TimeZone>string</TimeZone>
  <SsoLastLogin>dateTime</SsoLastLogin>
  <SsoEmail>string</SsoEmail>
  <SsoEmailVerified>boolean</SsoEmailVerified>
  <SsoProviderID>string</SsoProviderID>
  <SsoRawInfo>string</SsoRawInfo>
  <SsoEditLink>string</SsoEditLink>
  <SsoFirstName>string</SsoFirstName>
  <SsoLastName>string</SsoLastName>
  <SsoTimeZone>string</SsoTimeZone>
  <IsGuest>boolean</IsGuest>
  <EnableLogin>boolean</EnableLogin>
  <IsLockedOut>boolean</IsLockedOut>
  <LockedoutUntil>dateTime</LockedoutUntil>
  <InvitationCode>string</InvitationCode>
  <InvitationCode_ExpiresAt>dateTime</InvitationCode_ExpiresAt>
  <InvitationCode_IsExpired>boolean</InvitationCode_IsExpired>
  <HasPassword>boolean</HasPassword>
  <IsRegistered>boolean</IsRegistered>
  <LastLogin>dateTime</LastLogin>
  <LastLoginPassword>dateTime</LastLoginPassword>
  <LastLoginSSO>dateTime</LastLoginSSO>
  <LastLoginOAuth>dateTime</LastLoginOAuth>
  <StaffProfiles>
    <StaffProfileInfo>
      <Code>string</Code>
      <Description>string</Description>
      <ReceiveGiveSiteNotifications>boolean</ReceiveGiveSiteNotifications>
      <OnlyShowDonorID>boolean</OnlyShowDonorID>
      <IncludePrivateDonorDetails>boolean</IncludePrivateDonorDetails>
      <Designations>
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Designations>
      <DesignationWildcards>
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </DesignationWildcards>
      <Funds>
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Funds>
      <FundWildcards>
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </FundWildcards>
    </StaffProfileInfo>
    <StaffProfileInfo>
      <Code>string</Code>
      <Description>string</Description>
      <ReceiveGiveSiteNotifications>boolean</ReceiveGiveSiteNotifications>
      <OnlyShowDonorID>boolean</OnlyShowDonorID>
      <IncludePrivateDonorDetails>boolean</IncludePrivateDonorDetails>
      <Designations>
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Designations>
      <DesignationWildcards>
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </DesignationWildcards>
      <Funds>
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </Funds>
      <FundWildcards>
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountWildcardInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </FundWildcards>
    </StaffProfileInfo>
  </StaffProfiles>
  <DonorProfiles>
    <GiveProfileInfo>
      <Code>string</Code>
      <Description>string</Description>
      <DonorCode>string</DonorCode>
      <DonorAccounts>
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </DonorAccounts>
      <NumberOfGivePlans>int</NumberOfGivePlans>
      <NumberOfGivePayments>int</NumberOfGivePayments>
    </GiveProfileInfo>
    <GiveProfileInfo>
      <Code>string</Code>
      <Description>string</Description>
      <DonorCode>string</DonorCode>
      <DonorAccounts>
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
        <AccountInfo d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
      </DonorAccounts>
      <NumberOfGivePlans>int</NumberOfGivePlans>
      <NumberOfGivePayments>int</NumberOfGivePayments>
    </GiveProfileInfo>
  </DonorProfiles>
  <NumberOfGiveMethods>int</NumberOfGiveMethods>
  <HasProfile>boolean</HasProfile>
  <IsTntWare>boolean</IsTntWare>
  <IsAdmin>boolean</IsAdmin>
  <IsUserMgr>boolean</IsUserMgr>
  <IsBillingMgr>boolean</IsBillingMgr>
  <ShowBillingFeature>boolean</ShowBillingFeature>
  <ShowBillingMangerRole>boolean</ShowBillingMangerRole>
  <IsTranslator>boolean</IsTranslator>
  <IsPrimaryContact>boolean</IsPrimaryContact>
  <IsAlternateContact>boolean</IsAlternateContact>
  <IsBillingContact>boolean</IsBillingContact>
  <WasInvited>boolean</WasInvited>
  <InvitationSentOn>dateTime</InvitationSentOn>
  <InvitationSentTo>string</InvitationSentTo>
  <IsImpersonated>boolean</IsImpersonated>
</WebUserInfo>