POST api/confer/threads/{threadid}/messages

Request Information

URI Parameters

NameDescriptionTypeAdditional information
threadId

integer

Required

Body Parameters

PostMessageRequest
NameDescriptionTypeAdditional information
Body

string

None.

Mentions

Collection of string

None.

Request Formats

application/json, text/json

Sample:
{
  "Body": "sample string 1",
  "Mentions": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<PostMessageRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FraxionSM.API.Controllers">
  <Body>sample string 1</Body>
  <Mentions xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Mentions>
</PostMessageRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

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:01.6161213+00:00",
  "IsApexResponse": true
}

application/xml, text/xml

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