GET api/Documents/AllDocumentFilesOfCompanyTyped/{companyId}/{DocTypeId}
Get All Document typed of given CompanyId
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
companyId | integer |
Required |
|
DocTypeId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ArticleDocumentDTOName | Description | Type | Additional information |
---|---|---|---|
DocumentName | string |
None. |
|
Image | Collection of byte |
None. |
|
PublishedDate | date |
None. |
|
LastChanged | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "DocumentName": "sample string 1", "Image": "QEA=", "PublishedDate": "2025-08-14T03:19:00.6929329+00:00", "LastChanged": "2025-08-14T03:19:00.6929329+00:00" }, { "DocumentName": "sample string 1", "Image": "QEA=", "PublishedDate": "2025-08-14T03:19:00.6929329+00:00", "LastChanged": "2025-08-14T03:19:00.6929329+00:00" } ]
application/xml, text/xml
Sample:
<ArrayOfArticleDocumentDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ELO_IdentityAPI_Eloapp.net.Models"> <ArticleDocumentDTO> <DocumentName>sample string 1</DocumentName> <Image>QEA=</Image> <LastChanged>2025-08-14T03:19:00.6929329+00:00</LastChanged> <PublishedDate>2025-08-14T03:19:00.6929329+00:00</PublishedDate> </ArticleDocumentDTO> <ArticleDocumentDTO> <DocumentName>sample string 1</DocumentName> <Image>QEA=</Image> <LastChanged>2025-08-14T03:19:00.6929329+00:00</LastChanged> <PublishedDate>2025-08-14T03:19:00.6929329+00:00</PublishedDate> </ArticleDocumentDTO> </ArrayOfArticleDocumentDTO>