TagLise - API
  • Başlangıç
  • Giriş
  • Sosyal Medya Girişi
  • Kayıt Ol
  • Şifre Sıfırlama
  • Zaman çizelgesi beslemesi
  • Profil verileri (2)
  • Profili rapor et
  • Kullanıcıyı engelle
  • Bildirim token
  • Şifre değiştir
  • Erişim tokeni yenile
  • Kullanıcı oturumunu kapat
  • Kullanıcıyı doğrula
  • Gönder ve Yanıtla (4)
  • Oy anketleri
  • Hızlı oluştur (7)
  • Konu verileri (2)
  • Beğen / Beğenme
  • Gönderiyi bildir
  • Gönderiyi yeniden gönder
  • Yer işaretleri (2)
  • Beğeni gönder
  • Gönderiyi sil
  • Hashtag ara
  • Kişi ara
  • Gönderi ara
  • Gönderiyi profile sabitle
  • Profil verilerini güncelle
  • Avatar ve Kapak (3)
  • Kullanıcı gizliliği (2)
  • Takip Et ve Takibi Bırak
  • Takip et
  • Takipçileri getir
  • İstekleri takip et (3)
  • Bildirim al
  • Bildirimleri sil
  • Mesajlaşma (6)
  • Hesabı sil
  • Dili değiştir
Get bookmarks - 1 Add bookmark - 2

Get bookmarks

Please use this (https://taglise.com/mobile_api/get_bookmarks) API for accessing get user bookmarks endpoint


Get parameters

Field Value Remarks
session_id ​Access token ID E.g. de25cc16eb00960f076...
page_size ​Total post limit for each request Recommended: 20
offset Last post offset ID This is only needed when loading posts of the pagination system.

Success response

{
        "code": 200,
        "message": "Bookmarks fetched successfully",
        "data":[
            {"id": 36, "user_id": 7, "text": "retw", "type": "text", "replys_count": "1",…},
            {"id": 38, "user_id": 7, "text": "ert", "type": "text",…},
            {"id": 39, "user_id": 7, "text": "ert", "type": "text",…},
            {"id": 40, "user_id": 7, "text": "erter", "type": "text",…}
        ]
    }
    

Error responses

{
        "code": 401,
        "data": [],
        "message": "Unauthorized Access"
    }

    {
        "code": 204,
        "message": "No data found",
        "data": []
    }
    

Add bookmark / Unbookmark

Please use this (https://taglise.com/mobile_api/add_bookmark) API for accessing bookmark/unbookmark post endpoint


Post parameters

Field Value Remarks
session_id ​Access token ID E.g. de25cc16eb00960f076...
post_id Bookmarked/Unbookmarked post int ID E.g. 4567

Success response

{
    	"code": 200,
    	"message": "",
    	"data": {
    		"bookmark": false
    	}
    }
    

Error responses

{
        "code": 401,
        "data": [],
        "message": "Unauthorized Access"
    }

    {
    	"code": 400,
    	"message": "Post id is missing or invalid",
    	"data": []
    }