Skip to main content
Unsubscribe from a newsletter (channel) that you are currently following.
After unfollowing a newsletter, you will no longer receive updates from that channel. You can resubscribe later if the channel is public.

Request

X-Device-Id
string
Device identifier for multi-device support. Required when multiple devices are registered. If only one device is registered, it will be used as the default.
newsletter_id
string
required
The newsletter ID to unfollowExample: 120363024512399999@newsletter

Response

code
string
Response code (e.g., SUCCESS)
message
string
Response message describing the resultExample: Success
results
string
Additional result data (typically null for this endpoint)
curl -X POST \
  'https://your-api-domain.com/newsletter/unfollow' \
  -H 'Content-Type: application/json' \
  -H 'X-Device-Id: my-device' \
  -u 'username:password' \
  -d '{
    "newsletter_id": "120363024512399999@newsletter"
  }'
{
  "code": "SUCCESS",
  "message": "Success",
  "results": null
}

Build docs developers (and LLMs) love