POST v2/Account/GetAccount
Returns a single user account.
Request Information
URI Parameters
None.
Body Parameters
GetBranchUserAccountDataBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserName |
Username of the user |
string |
Required |
| 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:
{
"userName": "sample string 1",
"branchId": 2,
"branchSecret": "sample string 3"
}
Response Information
Resource Description
UserInformationViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| JobTitle | string |
None. |
|
| string |
None. |
||
| UserName | string |
None. |
|
| CreatedDate | date |
None. |
|
| EmailConfirmed | boolean |
None. |
|
| IsActive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"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-12-15T16:09:48.2258288+00:00",
"emailConfirmed": true,
"isActive": true
}
