GET api/Me/PersonalDoc

Get All Payslips of given LoggedEmploye

Request Information

URI Parameters

None.

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