Content Topic Blacklist Create

Blacklist or un-blacklist topics to an account's topic-blacklist

# to blacklist certain topics
curl -s -XPOST "https://api.lytics.io/api/content/topicblocklist" \
    -H "Content-type: application/json" \
    -H "Authorization: $LIOKEY" \
    -d'
{
  "method": "add",
  "ids": ["Data-First Marketing", "User Data Unification"]
}
' | jq '.'

# to unblacklist certain topics
curl -s -XPOST "https://api.lytics.io/api/content/topicblocklist" \
    -H "Content-type: application/json" \
    -H "Authorization: $LIOKEY" \
    -d'
{
  "method": "delete",
  "ids": ["Data-First Marketing", "User Data Unification"]
}
' | jq '.'

Language
Authorization
Header
Click Try It! to start a request and see the response here!