cURL
curl --request PUT \ --url https://api.reqlick.com/documents/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "slug": "<string>", "name": "<string>", "description": "<string>" }'
{ "error": false, "document": { "id": "1110580a82031111aaa01111", "name": "test1", "description": "test2" } }
Update a document for the authenticated workspace by its ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Document ID
Document updated successfully
The response is of type object.
object