Skip to main content
Skip table of contents

Обновление документа

Обновление документа

Обновление документа.

PUT /api/admin/v1/documents/{document}

Параметры метода

int document, уникальный идентификатор документа


string title, имя документа


string description, описание документа


file file, файл документа (максимальный размер файла 70мб)


file version, версия документа


bool is_public_download, файл для публичного использования

200 OK

Успешный ответ

JSON
{
    "id": 2,
    "title": "2",
    "description": "1",
    "url": "https://vms.local/storage/downloads/documents/620261318effe/v1.3.docx",
    "version": "1",
    "is_public_download": false,
    "created_at": "2022-02-08 15:25:21"
}

401 Unauthorized

Токен авторизации не передан или не валидный Получение токена

cURL
BASH
curl -k --request POST \
	--url 'https://your-domain/api/admin/v1/documents/{document}' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--data '{
    "document": 0,
    "title": "string",
    "description": "string",
    "file": "file",
    "version": "file",
    "is_public_download": true
}'
PHP
PHP
$data = array (
  'document' => 0,
  'title' => 'string',
  'description' => 'string',
  'file' => 'file',
  'version' => 'file',
  'is_public_download' => true,
);
$context = stream_context_create([
	'ssl'=>['verify_peer' => false],
	'http' => [
		'method' => 'PUT',
		'header' => "Content-Type: application/json\r
Accept: application/json",
		'content'=>json_encode($data)
	]
]);
$result = file_get_contents('https://your-domain/api/admin/v1/documents/{document}', false, $context);
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.