GET api/BackOffice/SearchAccounts?lastname={lastname}&firstname={firstname}&login={login}&reportysId={reportysId}&customerId={customerId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| lastname | string |
Required |
|
| firstname | string |
Required |
|
| login | string |
Required |
|
| reportysId | integer |
Required |
|
| customerId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of 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"
},
{
"Id": 1,
"Login": "sample string 2",
"Lastname": "sample string 3",
"Firstname": "sample string 4",
"CustomerName": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfReportysAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/myReportysModels">
<ReportysAccount>
<CustomerName>sample string 5</CustomerName>
<Firstname>sample string 4</Firstname>
<Id>1</Id>
<Lastname>sample string 3</Lastname>
<Login>sample string 2</Login>
</ReportysAccount>
<ReportysAccount>
<CustomerName>sample string 5</CustomerName>
<Firstname>sample string 4</Firstname>
<Id>1</Id>
<Lastname>sample string 3</Lastname>
<Login>sample string 2</Login>
</ReportysAccount>
</ArrayOfReportysAccount>