topic
Join authenticated User to Topic with a given token.
Allows sharing of private join urls for example in forums, on conference screen...
post/api/topics/join/:token
Path parameters
tokenstring required
Join token of the topic to join
Response
returns topic that user has joined
Example response
{
"status": {
"code": 20000
},
"data": {
"id": "c2eb6752-7d88-4153-93ae-fe47aee26573",
"title": "My topic title",
"description": "<html><head></head><body><h1>My topic title</h1></body></html>",
"creator": {
"name": "John Smith"
},
"endsAt": "2018-08-06T04:11:41.568Z",
"hashtag": "banana",
"createdAt": "2018-08-06T04:11:41.568Z",
"updatedAt": "2018-08-06T04:11:41.568Z"
}
}