GET api/confer/threads?entitytype={entitytype}&entityid={entityid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| entityType | string |
Required |
|
| entityId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ConferThreadDto| Name | Description | Type | Additional 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:13.4642178+00:00",
"LastMessageDate": "2026-09-18T21:56:13.4642178+00:00",
"IsArchived": true,
"MessageCount": 9
},
{
"ConferThreadID": 1,
"EntityType": "sample string 2",
"EntityID": 3,
"Title": "sample string 4",
"CreatedByEmployeeID": 5,
"CreatedDate": "2026-09-18T21:56:13.4642178+00:00",
"LastMessageDate": "2026-09-18T21:56:13.4642178+00:00",
"IsArchived": true,
"MessageCount": 9
}
]
application/xml, text/xml
Sample:
<ArrayOfConferThreadDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FraxionSM.API.Controllers">
<ConferThreadDto>
<ConferThreadID>1</ConferThreadID>
<CreatedByEmployeeID>5</CreatedByEmployeeID>
<CreatedDate>2026-09-18T21:56:13.4642178+00:00</CreatedDate>
<EntityID>3</EntityID>
<EntityType>sample string 2</EntityType>
<IsArchived>true</IsArchived>
<LastMessageDate>2026-09-18T21:56:13.4642178+00:00</LastMessageDate>
<MessageCount>9</MessageCount>
<Title>sample string 4</Title>
</ConferThreadDto>
<ConferThreadDto>
<ConferThreadID>1</ConferThreadID>
<CreatedByEmployeeID>5</CreatedByEmployeeID>
<CreatedDate>2026-09-18T21:56:13.4642178+00:00</CreatedDate>
<EntityID>3</EntityID>
<EntityType>sample string 2</EntityType>
<IsArchived>true</IsArchived>
<LastMessageDate>2026-09-18T21:56:13.4642178+00:00</LastMessageDate>
<MessageCount>9</MessageCount>
<Title>sample string 4</Title>
</ConferThreadDto>
</ArrayOfConferThreadDto>