GET api/confer/threads/{threadid}/messages?since={since}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
threadId

integer

Required

since

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ConferMessageDto
NameDescriptionTypeAdditional information
ConferMessageID

integer

None.

ConferThreadID

integer

None.

AuthorEmployeeID

integer

None.

Body

string

None.

Mentions

string

None.

CreatedDate

date

None.

IsApexResponse

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ConferMessageID": 1,
    "ConferThreadID": 2,
    "AuthorEmployeeID": 1,
    "Body": "sample string 3",
    "Mentions": "sample string 4",
    "CreatedDate": "2026-09-18T21:58:25.9404218+00:00",
    "IsApexResponse": true
  },
  {
    "ConferMessageID": 1,
    "ConferThreadID": 2,
    "AuthorEmployeeID": 1,
    "Body": "sample string 3",
    "Mentions": "sample string 4",
    "CreatedDate": "2026-09-18T21:58:25.9404218+00:00",
    "IsApexResponse": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfConferMessageDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FraxionSM.API.Controllers">
  <ConferMessageDto>
    <AuthorEmployeeID>1</AuthorEmployeeID>
    <Body>sample string 3</Body>
    <ConferMessageID>1</ConferMessageID>
    <ConferThreadID>2</ConferThreadID>
    <CreatedDate>2026-09-18T21:58:25.9404218+00:00</CreatedDate>
    <IsApexResponse>true</IsApexResponse>
    <Mentions>sample string 4</Mentions>
  </ConferMessageDto>
  <ConferMessageDto>
    <AuthorEmployeeID>1</AuthorEmployeeID>
    <Body>sample string 3</Body>
    <ConferMessageID>1</ConferMessageID>
    <ConferThreadID>2</ConferThreadID>
    <CreatedDate>2026-09-18T21:58:25.9404218+00:00</CreatedDate>
    <IsApexResponse>true</IsApexResponse>
    <Mentions>sample string 4</Mentions>
  </ConferMessageDto>
</ArrayOfConferMessageDto>