GET api/EntryClient/GetEntryByAccountIDAndEntryTypeIDs?accountID={accountID}&entryTypeIDs={entryTypeIDs}&showInactive={showInactive}&topResults={topResults}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountID

integer

Required

entryTypeIDs

string

Required

showInactive

boolean

Required

topResults

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of EntrySummaryByAccountIDAndEntryTypeIDs
NameDescriptionTypeAdditional information
EntryID

integer

None.

Entry

string

None.

Author

string

None.

Date

date

None.

EntryType

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "EntryID": 1,
    "Entry": "sample string 2",
    "Author": "sample string 3",
    "Date": "2025-09-02T23:04:53.8979474+00:00",
    "EntryType": "sample string 4"
  },
  {
    "EntryID": 1,
    "Entry": "sample string 2",
    "Author": "sample string 3",
    "Date": "2025-09-02T23:04:53.8979474+00:00",
    "EntryType": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEntrySummaryByAccountIDAndEntryTypeIDs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.Entry">
  <EntrySummaryByAccountIDAndEntryTypeIDs>
    <Author>sample string 3</Author>
    <Date>2025-09-02T23:04:53.8979474+00:00</Date>
    <Entry>sample string 2</Entry>
    <EntryID>1</EntryID>
    <EntryType>sample string 4</EntryType>
  </EntrySummaryByAccountIDAndEntryTypeIDs>
  <EntrySummaryByAccountIDAndEntryTypeIDs>
    <Author>sample string 3</Author>
    <Date>2025-09-02T23:04:53.8979474+00:00</Date>
    <Entry>sample string 2</Entry>
    <EntryID>1</EntryID>
    <EntryType>sample string 4</EntryType>
  </EntrySummaryByAccountIDAndEntryTypeIDs>
</ArrayOfEntrySummaryByAccountIDAndEntryTypeIDs>