List operations
curl --request GET \
--url https://www.dench.com/api/v1/commandsconst options = {method: 'GET'};
fetch('https://www.dench.com/api/v1/commands', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://www.dench.com/api/v1/commands"
response = requests.get(url)
print(response.text){
"operations": [
{
"id": "crm.entries.create",
"group": "crm",
"summary": "Create a CRM entry.",
"cli": "dench crm entries create",
"aliases": [],
"method": "POST",
"path": "/crm/objects/{objectName}/entries",
"backend": "convex",
"deprecated": false
}
]
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": "<unknown>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": "<unknown>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": "<unknown>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": "<unknown>"
}
}meta
List operations
List all CLI/API operations and parity classifications.
GET
/
commands
List operations
curl --request GET \
--url https://www.dench.com/api/v1/commandsconst options = {method: 'GET'};
fetch('https://www.dench.com/api/v1/commands', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://www.dench.com/api/v1/commands"
response = requests.get(url)
print(response.text){
"operations": [
{
"id": "crm.entries.create",
"group": "crm",
"summary": "Create a CRM entry.",
"cli": "dench crm entries create",
"aliases": [],
"method": "POST",
"path": "/crm/objects/{objectName}/entries",
"backend": "convex",
"deprecated": false
}
]
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": "<unknown>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": "<unknown>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": "<unknown>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": "<unknown>"
}
}Response
Successful response
Show child attributes
Show child attributes
⌘I