PUT
/
documents
/
{id}
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"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Document ID

Body

application/json
slug
string

Workspace URL

name
string

Document name

description
string

Document name

Response

200
application/json
Document updated successfully
error
boolean

Indicates if there was an error

Example:

false

document
object