GET api/downloadfiletypes/{id}?userId={userId}
GET: api/downloadfiletypes/{id} Get the item information by the Id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
|
integer |
Required |
userId |
|
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
DownloadFileTypeViewModel
DownloadFileTypeViewModelName | Description | Type | Additional 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
{ "downloadFileTypeId": 1, "downloadFileTypeName": "sample string 2", "groupId": 1, "typePath": "sample string 3", "isInternal": true, "createdOn": "2025-04-03T17:52:15.0334661-04:00", "searchPattern": "sample string 6" }
application/xml, text/xml
<DownloadFileTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <CreatedOn>2025-04-03T17:52:15.0334661-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>