Hi Nicole, I don't believe there is a single public Platform API endpoint that directly replicates the Knowledge Base UI Export feature.
To build a complete export through the public APIs, you would need to orchestrate multiple calls and assemble the JSON externally, for example:
GET /api/v2/knowledge/knowledgebases/{knowledgeBaseId}
GET /api/v2/knowledge/knowledgebases/{knowledgeBaseId}/categories
GET /api/v2/knowledge/knowledgebases/{knowledgeBaseId}/labels
GET /api/v2/knowledge/knowledgebases/{knowledgeBaseId}/documents
GET /api/v2/knowledge/knowledgebases/{knowledgeBaseId}/documents/{documentId}
GET /api/v2/knowledge/knowledgebases/{knowledgeBaseId}/documents/{documentId}/variations
GET /api/v2/knowledge/knowledgebases/{knowledgeBaseId}/documents/{documentId}/variations/{documentVariationId}
You would then need to combine the Knowledge Base metadata, categories, labels, documents, and variations into your own export JSON.
------------------------------
Att,
Breno Canyggia Ferreira Marreco
------------------------------