GET api.ashx/v2/conversationmessages/search.{json|xml}
Request Parameters
| Name | Type | Location | Description | Required | Default | Options |
|---|---|---|---|---|---|---|
| PageIndex | int | Query String | Page of results to return | Optional | ||
| PageSize | int | Query String | Number of results to return | Optional | ||
| Query | string | Query String | Full text of query | Optional | ||
| SortBy | string | Query String | Accepted values are: date asc, score asc, date desc, score desc | Optional |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({
url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/conversationmessages/search.json'
}).then(function(response) {
// use response
});Example Responses
JSON
{
"PageSize": 2,
"PageIndex": 0,
"TotalCount": 2,
"ConversationMessages": [
{
"Id": "49fec544-6df7-4a82-872b-f8be586d5e9e",
"Title": "title",
"Criteria": "criteria",
"BadgeIconUrl": "badgeiconurl",
"Enabled": true,
"CreatedDate": "2012-01-04T00:00:00",
"AutomationId": "9f5a6721-639d-4e1d-ab6a-ce63b7750f46",
"AutomationConfiguration": {},
"ContentId": "49fec544-6df7-4a82-872b-f8be586d5e9e",
"Url": "/achievements/49fec544-6df7-4a82-872b-f8be586d5e9e",
"Application": {
"Id": 1,
"DateCreated": "2018-10-22T23:11:22.61",
"Description": "",
"Key": "root",
"Name": "Community 12.1",
"ParentGroupId": -1,
"Url": "http://thirteen.community.local.telligent.com/",
"GroupType": "Joinless",
"EnableGroupMessages": true,
"EnableContact": false,
"TotalMembers": 0,
"HasGroups": true,
"PendingMembers": 0,
"AvatarUrl": "http://thirteen.community.local.telligent.com/cfs-file/__key/system/images/defaulthub.gif",
"GroupCount": 5,
"ThemeId": "3fc3f824-83d1-4ec4-85ef-92e206116d49",
"ApplicationId": "39ded655-26b5-48ab-b2ed-d7fde09d35b2",
"ContainerId": "39ded655-26b5-48ab-b2ed-d7fde09d35b2",
"ExtendedAttributes": [],
"Warnings": [],
"Errors": []
},
"Warnings": [],
"Errors": []
},
{
"Id": "fe65240b-044c-4292-9946-f10e0361ecff",
"Title": "title",
"Criteria": "criteria",
"BadgeIconUrl": "badgeiconurl",
"Enabled": true,
"CreatedDate": "2012-05-02T00:00:00",
"AutomationId": "2d525bad-c4df-470d-a193-a1c6d66e5c3e",
"AutomationConfiguration": {},
"ContentId": "fe65240b-044c-4292-9946-f10e0361ecff",
"Url": "/achievements/fe65240b-044c-4292-9946-f10e0361ecff",
"Application": {
"Id": 1,
"DateCreated": "2018-10-22T23:11:22.61",
"Description": "",
"Key": "root",
"Name": "Community 12.1",
"ParentGroupId": -1,
"Url": "http://thirteen.community.local.telligent.com/",
"GroupType": "Joinless",
"EnableGroupMessages": true,
"EnableContact": false,
"TotalMembers": 0,
"HasGroups": true,
"PendingMembers": 0,
"AvatarUrl": "http://thirteen.community.local.telligent.com/cfs-file/__key/system/images/defaulthub.gif",
"GroupCount": 5,
"ThemeId": "3fc3f824-83d1-4ec4-85ef-92e206116d49",
"ApplicationId": "39ded655-26b5-48ab-b2ed-d7fde09d35b2",
"ContainerId": "39ded655-26b5-48ab-b2ed-d7fde09d35b2",
"ExtendedAttributes": [],
"Warnings": [],
"Errors": []
},
"Warnings": [],
"Errors": []
}
],
"Errors": [
"string",
"string"
]
}XML
<?xml version="1.0" encoding="utf-16"?>
<Response>
<ConversationMessages PageSize="2" PageIndex="0" TotalCount="2">
<Achievement>
<Id>49fec544-6df7-4a82-872b-f8be586d5e9e</Id>
<Title>title</Title>
<Criteria>criteria</Criteria>
<BadgeIconUrl>badgeiconurl</BadgeIconUrl>
<Enabled>true</Enabled>
<CreatedDate>2012-01-04T00:00:00</CreatedDate>
<AutomationId>9f5a6721-639d-4e1d-ab6a-ce63b7750f46</AutomationId>
</Achievement>
<Achievement>
<Id>fe65240b-044c-4292-9946-f10e0361ecff</Id>
<Title>title</Title>
<Criteria>criteria</Criteria>
<BadgeIconUrl>badgeiconurl</BadgeIconUrl>
<Enabled>true</Enabled>
<CreatedDate>2012-05-02T00:00:00</CreatedDate>
<AutomationId>2d525bad-c4df-470d-a193-a1c6d66e5c3e</AutomationId>
</Achievement>
</ConversationMessages>
<Errors>
<Message>string</Message>
<Message>string</Message>
</Errors>
</Response>