GET api/Documents/DocumentFilesOfArticle/{postId}

Get All Document of given Article ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
postId

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