GET api/collectionsapproval/entityApprovalHistoryLog?from={from}&to={to}

Get Entity Approval History Logs

Request Information

URI Parameters

NameDescriptionTypeAdditional information
from

date

Required

to

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CollectionsEntityApprovalHistoryLogsViewModel
NameDescriptionTypeAdditional information
Id

Id

integer

None.

Note

Note

string

None.

RunFor

RunFor

date

None.

CreatedOn

CreatedOn

date

None.

CreatedBy

CreatedBy

integer

None.

UserName

UserName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "note": "sample string 2",
    "runFor": "2024-10-13T15:38:23.8816699-04:00",
    "createdOn": "2024-10-13T15:38:23.8816699-04:00",
    "createdBy": 5,
    "userName": "sample string 6"
  },
  {
    "id": 1,
    "note": "sample string 2",
    "runFor": "2024-10-13T15:38:23.8816699-04:00",
    "createdOn": "2024-10-13T15:38:23.8816699-04:00",
    "createdBy": 5,
    "userName": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCollectionsEntityApprovalHistoryLogsViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <CollectionsEntityApprovalHistoryLogsViewModel>
    <CreatedBy>5</CreatedBy>
    <CreatedOn>2024-10-13T15:38:23.8816699-04:00</CreatedOn>
    <Id>1</Id>
    <Note>sample string 2</Note>
    <RunFor>2024-10-13T15:38:23.8816699-04:00</RunFor>
    <UserName>sample string 6</UserName>
  </CollectionsEntityApprovalHistoryLogsViewModel>
  <CollectionsEntityApprovalHistoryLogsViewModel>
    <CreatedBy>5</CreatedBy>
    <CreatedOn>2024-10-13T15:38:23.8816699-04:00</CreatedOn>
    <Id>1</Id>
    <Note>sample string 2</Note>
    <RunFor>2024-10-13T15:38:23.8816699-04:00</RunFor>
    <UserName>sample string 6</UserName>
  </CollectionsEntityApprovalHistoryLogsViewModel>
</ArrayOfCollectionsEntityApprovalHistoryLogsViewModel>