POST api/confer/threads

Request Information

URI Parameters

None.

Body Parameters

CreateThreadRequest
NameDescriptionTypeAdditional information
EntityType

string

None.

EntityID

integer

None.

Title

string

None.

Request Formats

application/json, text/json

Sample:
{
  "EntityType": "sample string 1",
  "EntityID": 2,
  "Title": "sample string 3"
}

application/xml, text/xml

Sample:
<CreateThreadRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FraxionSM.API.Controllers">
  <EntityID>2</EntityID>
  <EntityType>sample string 1</EntityType>
  <Title>sample string 3</Title>
</CreateThreadRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ConferThreadDto
NameDescriptionTypeAdditional information
ConferThreadID

integer

None.

EntityType

string

None.

EntityID

integer

None.

Title

string

None.

CreatedByEmployeeID

integer

None.

CreatedDate

date

None.

LastMessageDate

date

None.

IsArchived

boolean

None.

MessageCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ConferThreadID": 1,
  "EntityType": "sample string 2",
  "EntityID": 3,
  "Title": "sample string 4",
  "CreatedByEmployeeID": 5,
  "CreatedDate": "2026-09-18T21:56:47.135094+00:00",
  "LastMessageDate": "2026-09-18T21:56:47.135094+00:00",
  "IsArchived": true,
  "MessageCount": 9
}

application/xml, text/xml

Sample:
<ConferThreadDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FraxionSM.API.Controllers">
  <ConferThreadID>1</ConferThreadID>
  <CreatedByEmployeeID>5</CreatedByEmployeeID>
  <CreatedDate>2026-09-18T21:56:47.135094+00:00</CreatedDate>
  <EntityID>3</EntityID>
  <EntityType>sample string 2</EntityType>
  <IsArchived>true</IsArchived>
  <LastMessageDate>2026-09-18T21:56:47.135094+00:00</LastMessageDate>
  <MessageCount>9</MessageCount>
  <Title>sample string 4</Title>
</ConferThreadDto>