v1

latestOpenAPI 3.0.12026-07-22231676.5 KB
Vault

Create a new Vault project

Creates a new project in the Vault system. The project can be designated as a knowledge base.

post/api/v1/vault/create_project

Response

Project successfully created

project_idstring

The unique identifier of the created project.

namestring

The name of the created project.

descriptionstring

The description of the project.

created_atstring date-time

Timestamp when the project was created.

statusstring

The status of the project.

Example response

{
  "project_id": "proj_1234567890abcdef",
  "name": "My Legal Documents",
  "description": "Project for storing legal case documents",
  "created_at": "2024-01-15T10:30:00Z",
  "settings": {
    "max_file_size": 104857600,
    "max_files": 1000,
    "allowed_file_types": [
      "pdf",
      "docx",
      "xlsx",
      "pptx",
      "txt",
      "rtf",
      "csv",
      "eml"
    ]
  },
  "status": "active"
}