API v1 Reference

List System Users

Returns a list of system users from NeonCRM. System users are accounts that have access to the back end of a NeonCRM system.

REST

Request

https://api.neoncrm.com/neonws/services/api/account/listSystemUsers?userSessionId=[session id]

Response

{ "listSystemUsersResponse": { 
    "operationResult": "SUCCESS", 
    "responseMessage": "2 records were found.", 
    "responseDateTime": "2012-12-27T01:40:55.496-06:00", 
    "systemUsers": { 
        "systemUser": [ 
            { "systemUserId": 3, "firstName": "John", "lastName": "Doe", "middleName": "" }, 
            { "systemUserId": 5, "firstName": "Mark", "lastName": "Wilson", "middleName": "" } ] 
        }
    }
}

SOAP

Request

<soapenv:envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:neon="http://www.z2systems.com/schemas/neonws/">
   <soapenv:header>
       <soapenv:body>
          <neon:listsystemusersrequest>
             <usersessionid>T1357624094982</usersessionid>
          </neon:listsystemusersrequest>
       </soapenv:body>
    </soapenv:header>
</soapenv:envelope>

Response

<soap:envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:body>
      <ns2:listsystemusersresponse xmlns:ns2="http://www.z2systems.com/schemas/neonws/">
         <operationresult>SUCCESS</operationresult>
         <responsemessage>1 records were found.</responsemessage>
         <responsedatetime>2013-01-08T01:27:00.772-06:00</responsedatetime>
         <systemusers>
            <systemuser>
               <systemuserid>3</systemuserid>
               <firstname>John</firstname>
               <lastname>Doe</lastname>
               <middlename>
            </middlename></systemuser>
         </systemusers>
      </ns2:listsystemusersresponse>
   </soap:body>
</soap:envelope>

Response Parameters

Name Required Description
systemUserId Yes The system user ID
firstName
lastName
middleName