追加されたすべての公開知識を取得

例リクエスト

curl -X GET \
  https://api.rememberizer.ai/api/v1/common-knowledge/subscribed-list/ \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"

YOUR_JWT_TOKEN を実際のJWTトークンに置き換えてください。

レスポンスフォーマット

[
  {
    "id": 1,
    "num_of_subscribers": 76,
    "publisher_name": "Rememberizer AI",
    "published_by_me": false,
    "subscribed_by_me": true,
    "size": 66741,
    "created": "2023-01-15T14:30:00Z",
    "modified": "2023-05-20T09:45:12Z",
    "priority_score": 2.053,
    "name": "Rememberizer Docs",
    "image_url": "https://example.com/images/rememberizer-docs.png",
    "description": "Rememberizerに関する最新のドキュメントとブログ投稿。",
    "api_key": null,
    "is_sharing": true,
    "memento": 159,
    "document_ids": [1234, 5678, 9012]
  }
]

このエンドポイントは、現在のユーザーが購読しているすべての公開知識(一般知識とも呼ばれる)のリストを取得します。各アイテムには、出版日、サイズ、関連文書など、知識ソースに関するメタデータが含まれています。

Last updated