GET api/Messages/MessageOfEmploye/{employeId}

Get All Messages of given Employe

Request Information

URI Parameters

NameDescriptionTypeAdditional information
employeId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Messages
NameDescriptionTypeAdditional information
MessageId

integer

None.

EmployesId

integer

None.

Txt

string

None.

PublishDate

date

None.

PublishTime

time interval

None.

GroupChatId

integer

None.

LastChanged

date

None.

LastChange_AuthorId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MessageId": 1,
    "EmployesId": 2,
    "Txt": "sample string 3",
    "PublishDate": "2025-08-14T03:18:44.8224917+00:00",
    "PublishTime": "00:00:00.1234567",
    "GroupChatId": 6,
    "LastChanged": "2025-08-14T03:18:44.8224917+00:00",
    "LastChange_AuthorId": 1
  },
  {
    "MessageId": 1,
    "EmployesId": 2,
    "Txt": "sample string 3",
    "PublishDate": "2025-08-14T03:18:44.8224917+00:00",
    "PublishTime": "00:00:00.1234567",
    "GroupChatId": 6,
    "LastChanged": "2025-08-14T03:18:44.8224917+00:00",
    "LastChange_AuthorId": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfMessages xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ELO_IdentityAPI_Eloapp.net.Models">
  <Messages>
    <EmployesId>2</EmployesId>
    <GroupChatId>6</GroupChatId>
    <LastChange_AuthorId>1</LastChange_AuthorId>
    <LastChanged>2025-08-14T03:18:44.8224917+00:00</LastChanged>
    <MessageId>1</MessageId>
    <PublishDate>2025-08-14T03:18:44.8224917+00:00</PublishDate>
    <PublishTime>PT0.1234567S</PublishTime>
    <Txt>sample string 3</Txt>
  </Messages>
  <Messages>
    <EmployesId>2</EmployesId>
    <GroupChatId>6</GroupChatId>
    <LastChange_AuthorId>1</LastChange_AuthorId>
    <LastChanged>2025-08-14T03:18:44.8224917+00:00</LastChanged>
    <MessageId>1</MessageId>
    <PublishDate>2025-08-14T03:18:44.8224917+00:00</PublishDate>
    <PublishTime>PT0.1234567S</PublishTime>
    <Txt>sample string 3</Txt>
  </Messages>
</ArrayOfMessages>