Skip to content

Documents

List Documents

http
GET /api/documents

Get all documents. Requires authentication.

Query Parameters

json
{
  "status": "string",
  "group_id": "number"
}

Create Document

http
POST /api/documents

Create a new document. Requires authentication.

Request Body

json
{
  "group_id": "number",
  "type": "string",
  "file": "file",
  "status": "string"
}

Update Document

http
PUT /api/documents/{id}

Update an existing document. Requires authentication.

Request Body

json
{
  "type": "string",
  "status": "string"
}

Delete Document

http
DELETE /api/documents/{id}

Delete a document. Requires authentication.