Skip to main content

Update a specific Discussion

This endpoint updates a specific discussion.

info

This operation requires authentication. The logged user must be the discussion creator

HTTP Request

PUT /api/v2/discussion/{id}/

Parameters

info

By passing a category id that has parents defined, the system will automatically ascend the category graph based on the parents and will also automatically add the parents category ids to the discussion.

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this discussion
» titlebodystring¦nulltrueThe title of the discussion
» textbodystringfalseThe content of the discussion in html format, it can contain some mentions
» categoriesbodylist(integer)trueList of id of Category
» mediasbodylist(integer)falseList of id of Media
» locationbodyobject¦nullfalseThe Location object to associate at the discussion
»» locationbodystring¦nulltrueThe location name
»» latbodynumber¦nulltrueThe location latitude
»» lngbodynumber¦nulltrueThe location longitude
» pollbodyobject¦nullfalseThe poll object to associate at the discussion
»» titlebodystringtrueThe poll title
»» multiple_choicesbodybooleanfalseIf the poll has multiple choices
»» expiration_atbodystring(date-time)falsePoll expiration datetime
»» choicesbodylist(object)truePoll choices
»»» choicebodystringtruePoll choice obj
» addressingbodylist(integer)falseList of Tag ids

Example Body Parameters

{
"title": "string",
"text": "string",
"categories": ["integer"],
"medias": ["integer"],
"location": {
"location": "string",
"lat": "integer",
"lng": "integer"
},
"poll": {
"title": "string",
"multiple_choices": "boolean",
"closed": "boolean",
"expiration_at": "string",
"choices": [
{
"choice": "string"
}
]
},
"addressing": ["integer"],
"tags": ["integer"]
}

Example Request

const inputBody = {
"title": "string",
"text": "string",
"categories": ["integer"],
"medias": ["integer"],
"location": {
"location": "string",
"lat": "integer",
"lng": "integer"
},
"poll": {
"title": "string",
"multiple_choices": "boolean",
"closed": "boolean",
"expiration_at": "string",
"choices": [
{
"choice": "string"
}
]
},
"addressing": ["integer"],
"tags": ["integer"]
};
const headers = {
'Content-Type':'application/json',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/discussion/{id}/',
{
method: 'PUT',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeDiscussion

Example responses

{
"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"
}