text.deleteTag
Give feedback by deleting a tag from a text.
Request Parameters
| collection_id | int (required) |
| text_id | int (required) |
Define what text.
May also use ext_text_id.| tag | String (required) |
Tag to me deleted. It needs to exist in the text.
| ext_text_id | String |
Define what text it is.
Response Parameters
| success | boolean |
Returns true if it was a success, else throws an exception.
Code Examples
JSON
//Request
{
"method":"text.deleteTag",
"params":{
"collection_id":607,
"text_id":3,
"tag":"Malmö"
},
"id":0
}
//Response
{
"id":0,
"result":{
"success": true
}
}