GET api/communications/userReference/{userReference}/activities
Returns the list of activities registered for a communication from the authenticated user that matches a user reference id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userReference |
User reference. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
List of communication activities.
Collection of TalkActivity| Name | Description | Type | Additional information |
|---|---|---|---|
| TalkId |
Communication identifier associated with the activity. |
integer |
None. |
| ParentTalkId |
Parent communication identifier associated with the activity. |
integer |
None. |
| Date |
Date and time when the activity was registered. |
date |
None. |
| LogType |
Type of activity. |
TalkLogType |
None. |
| LogState |
Result of the activity. |
TalkLogState |
None. |
| Meta |
Raw metadata associated with the activity. |
string |
None. |
| UserName |
User name associated with the activity. |
string |
None. |
| UserFullName |
Full name of the user associated with the activity. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"TalkId": 1,
"ParentTalkId": 1,
"Date": "2026-05-12T22:27:02.0509029+02:00",
"LogType": "Creation",
"LogState": "Failed",
"Meta": "sample string 3",
"UserName": "sample string 4",
"UserFullName": "sample string 5"
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfTalkActivity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PuntoNeutro.Core.WebApi">
<TalkActivity>
<Date>2026-05-12T22:27:02.0509029+02:00</Date>
<LogState>Failed</LogState>
<LogType>Creation</LogType>
<Meta>sample string 3</Meta>
<ParentTalkId>1</ParentTalkId>
<TalkId>1</TalkId>
<UserFullName>sample string 5</UserFullName>
<UserName>sample string 4</UserName>
</TalkActivity>
<TalkActivity>
<Date>2026-05-12T22:27:02.0509029+02:00</Date>
<LogState>Failed</LogState>
<LogType>Creation</LogType>
<Meta>sample string 3</Meta>
<ParentTalkId>1</ParentTalkId>
<TalkId>1</TalkId>
<UserFullName>sample string 5</UserFullName>
<UserName>sample string 4</UserName>
</TalkActivity>
</ArrayOfTalkActivity>