Add Tip

Public Beta Feature

This documentation covers a feature currently in Public Beta. Access is available to anyone interested in building personalized experiences for their end-users.

This feature is subject to the Personalization API (Self-Service) Public Beta End user License Agreement.


Parameters

Generated from available response content types
application/json text/plain

HTTP Responses

200

Response when adding a tip to a venue.

Example cURL Request

curl --request POST \
     --url https://api.foursquare.com/v2/tips/add \
     --header 'accept: application/json'

Example JSON Response

{
  "meta": {
    "code": 200,
    "requestId": "64138356813165221a961758"
  },
  "notifications": [
    {
      "type": "notificationTray",
      "item": {
        "unreadCount": 0
      }
    }
  ],
  "response": {
    "tip": {
      "id": "64138356a21d0758343e8135",
      "createdAt": 1679000406,
      "text": "Best coffee in town!",
      "type": "user",
      "canonicalUrl": "https://foursquare.com/item/64138356a21d0758343e8135",
      "canonicalPath": "/item/64138356a21d0758343e8135",
      "likes": {
        "count": 0,
        "groups": []
      },
      "viewCount": 0,
      "agreeCount": 0,
      "disagreeCount": 0,
      "venue": {
        "id": "56e845f7498e8880e6c39afa",
        "name": "Starbucks"
      },
      "user": {
        "id": "7294631",
        "firstName": "Bat",
        "lastName": "Macumba",
        "gender": "male",
        "countryCode": "US",
        "relationship": "self",
        "canonicalUrl": "https://foursquare.com/user/7294631",
        "canonicalPath": "/user/7294631",
        "photo": {
          "prefix": "https://fastly.4sqi.net/img/user/",
          "suffix": "/blank_boy.png",
          "default": true
        },
        "isAnonymous": false
      },
      "title": "Bat's tip"
    }
  }
}