Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
curl --request GET \
--url https://atoms-api.smallest.ai/api/v1/knowledgebase \
--header 'Authorization: Bearer <token>'
{
"status": true,
"data": [
{
"_id": "<string>",
"name": "<string>",
"description": "<string>",
"organization": "<string>",
"createdBy": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
Get all knowledge bases
curl --request GET \
--url https://atoms-api.smallest.ai/api/v1/knowledgebase \
--header 'Authorization: Bearer <token>'
{
"status": true,
"data": [
{
"_id": "<string>",
"name": "<string>",
"description": "<string>",
"organization": "<string>",
"createdBy": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.