Skip to content

Hidden Tips

Users can hide tips that are displayed in the app.

Hide a tip

http
POST https://api.backstack.com/user/hidden-tips/:id

Updates the session object to hide the tip with the specified ID.

json
// updated session object
{
  ...
  "user": {
    ...
    "hidden_tips": [
      "tip_1234567890",
      ...
    ]
  }
  ...
}

Resources

Reset hidden tips

Resets all tips to display again.

http
DELETE https: //api.backstack.com/user/hidden-tips

Updates the session object to remove all hidden tips.

json
// updated session object
{
  ...
  "user": {
    ...
    "hidden_tips": []
  }
  ...
}

Resources