GET api/downloadfiletypes

GET: api/downloadfiletypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of DownloadFileTypeViewModel
NameDescriptionTypeAdditional information
DownloadFileTypeId

DownloadFileTypeId

integer

None.

DownloadFileTypeName

DownloadFileTypeName

string

None.

GroupId

GroupId

integer

None.

TypePath

TypePath

string

None.

IsInternal

IsInternal

boolean

None.

CreatedOn

CreatedOn

date

None.

SearchPattern

SearchPattern

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "downloadFileTypeId": 1,
    "downloadFileTypeName": "sample string 2",
    "groupId": 1,
    "typePath": "sample string 3",
    "isInternal": true,
    "createdOn": "2024-10-14T06:23:10.8671865-04:00",
    "searchPattern": "sample string 6"
  },
  {
    "downloadFileTypeId": 1,
    "downloadFileTypeName": "sample string 2",
    "groupId": 1,
    "typePath": "sample string 3",
    "isInternal": true,
    "createdOn": "2024-10-14T06:23:10.8671865-04:00",
    "searchPattern": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDownloadFileTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <DownloadFileTypeViewModel>
    <CreatedOn>2024-10-14T06:23:10.8671865-04:00</CreatedOn>
    <DownloadFileTypeId>1</DownloadFileTypeId>
    <DownloadFileTypeName>sample string 2</DownloadFileTypeName>
    <GroupId>1</GroupId>
    <IsInternal>true</IsInternal>
    <SearchPattern>sample string 6</SearchPattern>
    <TypePath>sample string 3</TypePath>
  </DownloadFileTypeViewModel>
  <DownloadFileTypeViewModel>
    <CreatedOn>2024-10-14T06:23:10.8671865-04:00</CreatedOn>
    <DownloadFileTypeId>1</DownloadFileTypeId>
    <DownloadFileTypeName>sample string 2</DownloadFileTypeName>
    <GroupId>1</GroupId>
    <IsInternal>true</IsInternal>
    <SearchPattern>sample string 6</SearchPattern>
    <TypePath>sample string 3</TypePath>
  </DownloadFileTypeViewModel>
</ArrayOfDownloadFileTypeViewModel>