GET api/BackOffice/LoadUserInfo?userId={userId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ReportysAccount| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Login | string |
None. |
|
| Lastname | string |
None. |
|
| Firstname | string |
None. |
|
| CustomerName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Login": "sample string 2",
"Lastname": "sample string 3",
"Firstname": "sample string 4",
"CustomerName": "sample string 5"
}
application/xml, text/xml
Sample:
<ReportysAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/myReportysModels"> <CustomerName>sample string 5</CustomerName> <Firstname>sample string 4</Firstname> <Id>1</Id> <Lastname>sample string 3</Lastname> <Login>sample string 2</Login> </ReportysAccount>