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 ArticleDocumentDTO| Name | 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-12-27T08:45:53.3161856+00:00",
"LastChanged": "2025-12-27T08:45:53.3161856+00:00"
},
{
"DocumentName": "sample string 1",
"Image": "QEA=",
"PublishedDate": "2025-12-27T08:45:53.3161856+00:00",
"LastChanged": "2025-12-27T08:45:53.3161856+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-12-27T08:45:53.3161856+00:00</LastChanged>
<PublishedDate>2025-12-27T08:45:53.3161856+00:00</PublishedDate>
</ArticleDocumentDTO>
<ArticleDocumentDTO>
<DocumentName>sample string 1</DocumentName>
<Image>QEA=</Image>
<LastChanged>2025-12-27T08:45:53.3161856+00:00</LastChanged>
<PublishedDate>2025-12-27T08:45:53.3161856+00:00</PublishedDate>
</ArticleDocumentDTO>
</ArrayOfArticleDocumentDTO>