Skip to main content

Search a Discussion

This endpoint performs search operation to discussions.

info

This operation requires authentication only if content_availability community option is false

HTTP Request

GET /api/v2/discussion/search/

Parameters

NameInTypeRequiredDescription
searchquerystringfalseA search term

Example Request

const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/discussion/search/',
{
method: 'GET',

headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

Status Code 200

NameTypeRequiredRestrictionsDescription
» countintegertruenoneTotal results count
» nextstring¦nullfalsenoneNext page url
» previousstring¦nullfalsenonePrevious page url
» resultslist(SearchDiscussion)truenoneList of results

Example responses

{
"count": "integer",
"next": "string(uri)",
"previous": "string(uri)",
"results": [
{
"id": "integer",
"type": "string",
"last_activity_at": "string",
"author": {User},
"added_at": "string",
"last_edited_at": "string",
"html": "string",
"summary": "string",
"deleted": "boolean",
"collapsed": "boolean",
"comment_count": "integer",
"view_count": "integer",
"vote_count": "integer",
"reactions_count": [{Reaction}],
"voted": "boolean",
"reaction": {Reaction},
"follower_count": "integer",
"followed": "boolean",
"suspended": "boolean",
"flag_count": "integer",
"share_count": "integer",
"slug": "string",
"categories": [{Category}],
"medias": [{Media}],
"location": "string",
"addressing": ["integer"],
"tags": ["integer"],
"poll": {Poll},
"title": "string"
"matches": [
{
"object": {
"id": "integer",
"type": "string",
"added_at": "string",
"html": "string"
},
"author": {}
}
]
}
]
}