Get a List of Web Users
Returns a list of all web users accessible by the current user.
Query String Parameters
Name | Type | Description | Required |
---|---|---|---|
Action | String | WebUserList | Required |
ReturnCustomFields | Bool | Include custom fields in the response. | Optional |
Response Codes
Code | Message | Information |
---|---|---|
0 | Response Data | See 'Response' example tab |
2 | No Web Users found | No data returned or set-up in BigChange |
2 | WebUserList is not implemented for Auth0 enabled customers via the user management service |
Example
- Request
- Response
Request URL
https://webservice.bigchange.com/v01/services.ashx?action=WebUserList&ReturnCustomFields=true
Response Data
{ "Code": 0, "Result": [ { "name": "John Doe", "email": "john.doe@example.com", "id": 5437 }, { "name": "Jane Smith", "email": "jane.smith@example.com", "id": 9757 }, { "name": "Michael Johnson", "email": "michael.johnson@example.com", "id": 11461 }, { "name": "Emily Davis", "email": "emily.davis@example.com", "id": 11850 }, { "name": "Christopher Lee", "email": "christopher.lee@example.com", "id": 13200 } ] }