GET
/
knowledge
/
{knowledge_id}
curl --request GET \
  --url https://api.datagrid.com/v1/knowledge/{knowledge_id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "knowledge",
  "id": "<string>",
  "name": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "status": "pending",
  "row_counts": {
    "total": 123,
    "completed": 123,
    "failed": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

knowledge_id
string
required

The id of the knowledge to retrieve.

Response

200 - application/json
Retrieved knowledge

The knowledge object represents knowledge that an agent may leverage to respond.