curl --request GET \
--url https://api.getcargo.io/v1/ai/documents/list \
--header 'Authorization: Bearer <token>'{
"documents": [
{
"uuid": "<string>",
"workspaceUuid": "<string>",
"userUuid": "<string>",
"title": "<string>",
"content": "<string>",
"kind": "text",
"createdAt": "<string>",
"deletedAt": "<string>"
}
]
}List all AI documents
curl --request GET \
--url https://api.getcargo.io/v1/ai/documents/list \
--header 'Authorization: Bearer <token>'{
"documents": [
{
"uuid": "<string>",
"workspaceUuid": "<string>",
"userUuid": "<string>",
"title": "<string>",
"content": "<string>",
"kind": "text",
"createdAt": "<string>",
"deletedAt": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Document identifier.
Maximum number of documents to return.
Number of documents to skip.
Successful response
List of documents.
Show child attributes
Was this page helpful?