Partner Toolkit Web Service - Methods - GetUsers

GetUsers

This method is only available for use by clients whose account is designated to be a Reseller account.

This method is used to retrieve the list of users of an account, specified by clientExternalLogin.

» returnCSVString» Boolean
» externalLogin» String
» password» String
» resellerCode» String
» clientExternalLogin» String

On successful completion of this method, the userid, first name, last name and email address are returned.

Return Data


    <?xml version="1.0" encoding="UTF-8"?>
    <GetUserResponse>
        <Transaction>
            <IP>123.123.123.123</IP>
            <Code>1</Code>
            <Description>Transaction OK</Description>
        </Transaction>
        <Users>
            <UserContainer>
                <ID>222222</ID>
                <FirstName>FirstName1</FirstName>
                <LastName> LastName1</LastName>
                <Email>email1@domain.com</Email>
            </UserContainer>
            <UserContainer>
                <ID>222223</ID>
                <FirstName>FirstName2</FirstName>
                <LastName>LastName2</LastName>
                <Email>email2@domain.com</Email>
            </UserContainer>
        </Users>
    </GetUserResponse>    
    

CSV:


    #1#
"222222","FirstName1","LastName1","email1@domain.com"
"222223","FirstName2","LastName2","email2@domain.com"