GET api/RecentCustomerViews?LoginId={LoginId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
LoginId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RecentCustomerView
NameDescriptionTypeAdditional information
RecordId

integer

None.

LoginId

integer

None.

UtilityId

integer

None.

AccountNumber

integer

None.

CustomerName

string

Max length: 200

ViewDateAndTime

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RecordId": 1,
    "LoginId": 2,
    "UtilityId": 3,
    "AccountNumber": 4,
    "CustomerName": "sample string 5",
    "ViewDateAndTime": "2024-04-04T11:07:58.5830217+00:00"
  },
  {
    "RecordId": 1,
    "LoginId": 2,
    "UtilityId": 3,
    "AccountNumber": 4,
    "CustomerName": "sample string 5",
    "ViewDateAndTime": "2024-04-04T11:07:58.5830217+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfRecentCustomerView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APL.Models">
  <RecentCustomerView>
    <AccountNumber>4</AccountNumber>
    <CustomerName>sample string 5</CustomerName>
    <LoginId>2</LoginId>
    <RecordId>1</RecordId>
    <UtilityId>3</UtilityId>
    <ViewDateAndTime>2024-04-04T11:07:58.5830217+00:00</ViewDateAndTime>
  </RecentCustomerView>
  <RecentCustomerView>
    <AccountNumber>4</AccountNumber>
    <CustomerName>sample string 5</CustomerName>
    <LoginId>2</LoginId>
    <RecordId>1</RecordId>
    <UtilityId>3</UtilityId>
    <ViewDateAndTime>2024-04-04T11:07:58.5830217+00:00</ViewDateAndTime>
  </RecentCustomerView>
</ArrayOfRecentCustomerView>