DELETE tag

DELETE /accounts/{id}/alerts/{alert_id}/tag/{tag_id}

This method is used to delete a tag. All mentions tagged with that label will be "untagged".

Parameters

  • account_id (string) - Id of the account
  • alert_id (number) - Id of the alert
  • tag_id (number) - Id of the tag

Minimal curl example

curl -ig 'https://api.mention.net/api/accounts/{id}/alerts/{alert_id}/tag/{tag_id}' \
    -X DELETE \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
    -H 'Accept-Version: 1.19'

Request example

  • Headers
Authorization: Bearer YOUR_ACCESS_TOKEN
Accept-Version: 1.19

Response example

  • Body
{"success": true}