GET api/entry/GetEntryFilterList?showInactive={showInactive}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
showInactive

boolean

Required

Body Parameters

None.

Response Information

Resource Description

EntryFilterListVM
NameDescriptionTypeAdditional information
EntryTypeList

Collection of EntryTypeForList

None.

EntryTypeGroupList

Collection of EntryTypeGroupForList

None.

Response

IResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "EntryTypeList": [
    {
      "EntryTypeID": 1,
      "EntryType": "sample string 2",
      "EntryTypeIDEncrypted": "sample string 3"
    },
    {
      "EntryTypeID": 1,
      "EntryType": "sample string 2",
      "EntryTypeIDEncrypted": "sample string 3"
    }
  ],
  "EntryTypeGroupList": [
    {
      "EntryTypeGroupID": 1,
      "EntryTypeGroup": "sample string 2"
    },
    {
      "EntryTypeGroupID": 1,
      "EntryTypeGroup": "sample string 2"
    }
  ],
  "Response": null
}

application/xml, text/xml

Sample:
<EntryFilterListVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.Entry">
  <Response i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels" />
  <EntryTypeGroupList xmlns:d2p1="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.EntryGroupType">
    <d2p1:EntryTypeGroupForList>
      <d2p1:EntryTypeGroup>sample string 2</d2p1:EntryTypeGroup>
      <d2p1:EntryTypeGroupID>1</d2p1:EntryTypeGroupID>
    </d2p1:EntryTypeGroupForList>
    <d2p1:EntryTypeGroupForList>
      <d2p1:EntryTypeGroup>sample string 2</d2p1:EntryTypeGroup>
      <d2p1:EntryTypeGroupID>1</d2p1:EntryTypeGroupID>
    </d2p1:EntryTypeGroupForList>
  </EntryTypeGroupList>
  <EntryTypeList xmlns:d2p1="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.EntryType">
    <d2p1:EntryTypeForList>
      <d2p1:EntryType>sample string 2</d2p1:EntryType>
      <d2p1:EntryTypeID>1</d2p1:EntryTypeID>
      <d2p1:EntryTypeIDEncrypted>sample string 3</d2p1:EntryTypeIDEncrypted>
    </d2p1:EntryTypeForList>
    <d2p1:EntryTypeForList>
      <d2p1:EntryType>sample string 2</d2p1:EntryType>
      <d2p1:EntryTypeID>1</d2p1:EntryTypeID>
      <d2p1:EntryTypeIDEncrypted>sample string 3</d2p1:EntryTypeIDEncrypted>
    </d2p1:EntryTypeForList>
  </EntryTypeList>
</EntryFilterListVM>