GET api/downloadfiletypes/{id}?userId={userId}

GET: api/downloadfiletypes/{id} Get the item information by the Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

userId

integer

Required

Body Parameters

None.

Response Information

Resource Description

DownloadFileTypeViewModel

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-14T08:20:46.3086146-04:00",
  "searchPattern": "sample string 6"
}

application/xml, text/xml

Sample:
<DownloadFileTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <CreatedOn>2024-10-14T08:20:46.3086146-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>