GET api/EntryTypeClient/GetEntryTypeForList?showInactive={showInactive}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| showInactive | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EntryTypeForList| Name | Description | Type | Additional information |
|---|---|---|---|
| EntryTypeID | integer |
None. |
|
| EntryType | string |
None. |
|
| EntryTypeIDEncrypted | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EntryTypeID": 1,
"EntryType": "sample string 2",
"EntryTypeIDEncrypted": "sample string 3"
},
{
"EntryTypeID": 1,
"EntryType": "sample string 2",
"EntryTypeIDEncrypted": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfEntryTypeForList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.EntryType">
<EntryTypeForList>
<EntryType>sample string 2</EntryType>
<EntryTypeID>1</EntryTypeID>
<EntryTypeIDEncrypted>sample string 3</EntryTypeIDEncrypted>
</EntryTypeForList>
<EntryTypeForList>
<EntryType>sample string 2</EntryType>
<EntryTypeID>1</EntryTypeID>
<EntryTypeIDEncrypted>sample string 3</EntryTypeIDEncrypted>
</EntryTypeForList>
</ArrayOfEntryTypeForList>