POST v2/Account/GetAccount

Returns a single user account.

Request Information

URI Parameters

None.

Body Parameters

GetBranchUserAccountDataBindingModel
NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional information
Title

string

None.

FirstName

string

None.

LastName

string

None.

JobTitle

string

None.

Email

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-04-24T12:35:18.6290207+01:00",
  "emailConfirmed": true,
  "isActive": true
}