Delete List Item
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
list_id
string
required
The ID of the list to be acted upon.v
string
required
The API version date as documented here; e.g. 20231010venueId
string
required
The venue you want to add to the list; e.g., Foursquare HQ's venue_id = 5a187743ccad6b307315e6fetext
string
Optional text provided as a tip; applicable only when specifying a venue ID.
API Responses
Successful Deletion Response
{
"meta": {
"code": 200,
"requestId": "6418ef863b62b02d0473f813"
},
"notifications": [
{
"type": "notificationTray",
"item": {
"unreadCount": 0
}
}
],
"response": {
"items": {
"count": 1,
"items": [
{
"id": "v552327e9498e46856f3ed445",
"venue": {
"id": "552327e9498e46856f3ed445",
"name": "Conto's Pizza & Pasta"
}
}
]
}
}
}
Sample cURL Request
curl --request POST \
--url https://api.foursquare.com/v2/lists/list_id/deleteitem \
--header 'accept: application/json'