Appearance
Documents
List Documents
http
GET /api/documentsGet all documents. Requires authentication.
Query Parameters
json
{
"status": "string",
"group_id": "number"
}Create Document
http
POST /api/documentsCreate 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.