Upload custom markup

You can change tags, aspects and sentiment for each mention. Custom markup affects the first method and data in the web interface.

To upload custom markup, use POST method.

Example:

POST <host>/api/project_markup/myaccount/myproject

Pass the following payload:

{
"posts": [
  {
    "mention_id": "cddeb635593ed4ee00",
    "tags": ["report", "customer"],
    "sentiment": "positive"
   },
   { ... }
]
}

mention_id is a required parameter, what identifies each mention.

No query parameters are required.

Contacts