Add delete to monitors/:monitorId doc

This commit is contained in:
Alex Holliday
2024-09-25 10:57:44 +08:00
parent fe97390e53
commit 17f2039fc2
+51
View File
@@ -881,6 +881,57 @@
"bearerAuth": []
}
]
},
"delete": {
"tags": ["monitors"],
"description": "Delete monitor by id",
"parameters": [
{
"name": "monitorId",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessResponse"
}
}
}
},
"422": {
"description": "Unprocessable Content",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
}
}
},
"500": {
"description": "Internal Server Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
}
}
}
},
"security": [
{
"bearerAuth": []
}
]
}
},
"/monitors/stats/{monitorId}": {