POST v2/Account/GetAccounts
Returns a list of user accounts.
Request Information
URI Parameters
None.
Body Parameters
GetBranchUserAccountsDataBindingModelName | Description | Type | Additional information |
---|---|---|---|
BranchId |
This is the Id of the branch, you can obtain this information fro ehouse staff |
integer |
Required |
BranchSecret |
This is the BranchSecret of the branch, you can obtain this information from ehouse staff, each branch has a unique BranchSecret. |
string |
Required |
Request Formats
application/json, text/json
Sample:
{ "branchId": 1, "branchSecret": "sample string 2" }
Response Information
Resource Description
UserInformationListViewModelName | Description | Type | Additional information |
---|---|---|---|
TotalUsers | integer |
None. |
|
UserInformationList | Collection of UserInformationViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "totalUsers": 1, "userInformationList": [ { "title": "sample string 1", "firstName": "sample string 2", "lastName": "sample string 3", "jobTitle": "sample string 4", "email": "sample string 5", "userName": "sample string 6", "createdDate": "2025-04-24T12:37:13.8930844+01:00", "emailConfirmed": true, "isActive": true }, { "title": "sample string 1", "firstName": "sample string 2", "lastName": "sample string 3", "jobTitle": "sample string 4", "email": "sample string 5", "userName": "sample string 6", "createdDate": "2025-04-24T12:37:13.8930844+01:00", "emailConfirmed": true, "isActive": true } ] }