GET api/Customers/History/GetList?customerId={customerId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customerId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerHistorySelectModel
NameDescriptionTypeAdditional information
Id

integer

None.

Description

string

None.

DateCreate

date

None.

EmployeeName

string

None.

Group

string

None.

AvatarUrl

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "description": "sample string 2",
    "dateCreate": "2025-12-06T12:34:35.8276964+07:00",
    "employeeName": "sample string 4",
    "group": "sample string 5",
    "avatarUrl": "sample string 6"
  },
  {
    "id": 1,
    "description": "sample string 2",
    "dateCreate": "2025-12-06T12:34:35.8276964+07:00",
    "employeeName": "sample string 4",
    "group": "sample string 5",
    "avatarUrl": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerHistorySelectModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.Customer">
  <CustomerHistorySelectModel>
    <AvatarUrl>sample string 6</AvatarUrl>
    <DateCreate>2025-12-06T12:34:35.8276964+07:00</DateCreate>
    <Description>sample string 2</Description>
    <EmployeeName>sample string 4</EmployeeName>
    <Group>sample string 5</Group>
    <Id>1</Id>
  </CustomerHistorySelectModel>
  <CustomerHistorySelectModel>
    <AvatarUrl>sample string 6</AvatarUrl>
    <DateCreate>2025-12-06T12:34:35.8276964+07:00</DateCreate>
    <Description>sample string 2</Description>
    <EmployeeName>sample string 4</EmployeeName>
    <Group>sample string 5</Group>
    <Id>1</Id>
  </CustomerHistorySelectModel>
</ArrayOfCustomerHistorySelectModel>