GET api/Documents/AllDocumentFilesOfSiteTyped/{siteId}/{DocTypeId}

Get All Document Files of given SiteId with given type

Request Information

URI Parameters

NameDescriptionTypeAdditional information
siteId

integer

Required

DocTypeId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ArticleDocumentDTO
NameDescriptionTypeAdditional 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:17:13.7664911+00:00",
    "LastChanged": "2025-08-14T03:17:13.7664911+00:00"
  },
  {
    "DocumentName": "sample string 1",
    "Image": "QEA=",
    "PublishedDate": "2025-08-14T03:17:13.7664911+00:00",
    "LastChanged": "2025-08-14T03:17:13.7664911+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:17:13.7664911+00:00</LastChanged>
    <PublishedDate>2025-08-14T03:17:13.7664911+00:00</PublishedDate>
  </ArticleDocumentDTO>
  <ArticleDocumentDTO>
    <DocumentName>sample string 1</DocumentName>
    <Image>QEA=</Image>
    <LastChanged>2025-08-14T03:17:13.7664911+00:00</LastChanged>
    <PublishedDate>2025-08-14T03:17:13.7664911+00:00</PublishedDate>
  </ArticleDocumentDTO>
</ArrayOfArticleDocumentDTO>