Ottieni tutta la conoscenza pubblica aggiunta

get

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.

Responses
200
Successful operation
application/json
get
GET /api/v1/common-knowledge/subscribed-list/ HTTP/1.1
Host: api.rememberizer.ai
Accept: */*
200

Successful operation

[
  {
    "id": 1,
    "num_of_subscribers": 1,
    "publisher_name": "text",
    "published_by_me": true,
    "subscribed_by_me": true,
    "created": "text",
    "modified": "text",
    "name": "text",
    "image_url": "text",
    "description": "text",
    "memento": 1,
    "document_ids": [
      1
    ]
  }
]

Esempi di Richieste

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

Sostituisci YOUR_JWT_TOKEN con il tuo token JWT reale.

Formato di Risposta

[
  {
    "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": "Documenti di Rememberizer",
    "image_url": "https://example.com/images/rememberizer-docs.png",
    "description": "L'ultima documentazione e i post del blog su Rememberizer.",
    "api_key": null,
    "is_sharing": true,
    "memento": 159,
    "document_ids": [1234, 5678, 9012]
  }
]

Questo endpoint recupera un elenco di tutte le conoscenze pubbliche (note anche come conoscenze comuni) a cui l'utente attuale è iscritto. Ogni elemento include metadati sulla fonte di conoscenza, come la data di pubblicazione, la dimensione e i documenti associati.

Last updated