추가된 모든 공개 지식 가져오기

This operation retrieves the list of the shared knowledge (also known as common knowlege) that the user has subscribed to. Each shared knowledge includes a list of document ids where user can access.

GEThttps://api.rememberizer.ai/api/v1/common_knowledge/subscribed-list/
Response

A list of subscribed common knowledge items.

Body
idinteger

The ID of the common knowledge.

Example: 1
num_of_subscribersinteger

Number of subscribers.

Example: 76
publisher_namestring

Name of the publisher.

Example: "Rememberizer AI"
published_by_meboolean

Indicates if published by the requester.

Example: false
subscribed_by_meboolean

Indicates if subscribed by the requester.

Example: true
sizeinteger

Size of the common knowledge.

Example: 66741
createdstring (date-time)

Creation timestamp.

modifiedstring (date-time)

Modification timestamp.

priority_scorenumber (float)

Priority score.

Example: 2.053
namestring

Name of the common knowledge.

Example: "Rememberizer Docs"
image_urlstring (uri)

URL of the image.

descriptionstring

Description of the common knowledge.

Example: "The latest documentation and blog posts about Rememberizer."
api_keynullable string

API key associated with the common knowledge.

is_sharingboolean

Sharing status.

Example: true
mementointeger

Associated memento ID.

Example: 159
Request
const response = await fetch('https://api.rememberizer.ai/api/v1/common_knowledge/subscribed-list/', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "id": 1,
    "num_of_subscribers": 76,
    "publisher_name": "Rememberizer AI",
    "published_by_me": false,
    "subscribed_by_me": true,
    "size": 66741,
    "created": "2025-01-18T09:15:52.097Z",
    "modified": "2025-01-18T09:15:52.097Z",
    "priority_score": 2.053,
    "name": "Rememberizer Docs",
    "image_url": "https://example.com",
    "description": "The latest documentation and blog posts about Rememberizer.",
    "api_key": "text",
    "is_sharing": true,
    "memento": 159
  }
]

Last updated