v1ConvaiKnowledgeBaseDocumentationIdDelete method

Future<Response> v1ConvaiKnowledgeBaseDocumentationIdDelete({
  1. required String? documentationId,
  2. bool? force,
  3. String? xiApiKey,
})

Delete Knowledge Base Document @param documentation_id The id of a document from the knowledge base. This is returned on document addition. @param force If set to true, the document will be deleted regardless of whether it is used by any agents and it will be deleted from the dependent agents. @param xi-api-key Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Implementation

Future<chopper.Response> v1ConvaiKnowledgeBaseDocumentationIdDelete({
  required String? documentationId,
  bool? force,
  String? xiApiKey,
}) {
  return _v1ConvaiKnowledgeBaseDocumentationIdDelete(
    documentationId: documentationId,
    force: force,
    xiApiKey: xiApiKey?.toString(),
  );
}