Ottieni tutte le conoscenze pubbliche aggiunte
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.
Successful operation
This is the unique identifier of the shared knowledge. Do not show this information anywhere.
This indicates the number of users who have subscribed to this shared knowledge
This indicates whether the shared knowledge was published by the current user or not
This indicates whether the shared knowledge was subscribed by the current user or not, it should be true in this API
This is the time when the shared knowledge was created
This is the time when the shared knowledge was last modified
This is the name of the shared knowledge
This is the image url of the shared knowledge
This is the description of the shared knowledge
This is the ID of the Rememberizer memento where the shared knowledge was created from.
This is the list of document ids that belong to the shared knowledge
Successful operation
Esempi di Richieste
curl -X GET \
https://api.rememberizer.ai/api/v1/common-knowledge/subscribed-list/ \
-H "Authorization: Bearer YOUR_JWT_TOKEN"const getPublicKnowledge = async () => {
const response = await fetch('https://api.rememberizer.ai/api/v1/common-knowledge/subscribed-list/', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_JWT_TOKEN'
}
});
const data = await response.json();
console.log(data);
};
getPublicKnowledge();import requests
def get_public_knowledge():
headers = {
"Authorization": "Bearer YOUR_JWT_TOKEN"
}
response = requests.get(
"https://api.rememberizer.ai/api/v1/common-knowledge/subscribed-list/",
headers=headers
)
data = response.json()
print(data)
get_public_knowledge()Formato di Risposta
Last updated