CLI REST-API

show-locks

show-locks [option]
The "show-locks" command prints a list of locks.

Specifying "--all" will display all locked elements.

RESTAPI: The data can be passed in the body like this:
{
    "parameters": {
        "show-all": true
    }
}
NameValueDescriptionExample
alldisplay all locked elements
See also:
lock: locks an element.
unlock: unlocks an element.

REST-API Support:


This command is supported by the REST API:

Method: PUT
URL: /api/show-locks
Body:
{
    "parameters": {
        "show-all": [boolean]
    }
}

Example using curl:
curl -X PUT /api/show-locks -d 
"{
    \"parameters\": {
        \"show-all\": true
    }
}"