DeleteClient()

This commit is contained in:
2022-11-19 12:59:25 +01:00
parent 650ba20e5d
commit e53f40866e
4 changed files with 185 additions and 12 deletions

View File

@@ -184,11 +184,63 @@
}
}
}
},
"post": {
"summary": "Delete a client",
"operationId": "api-clients-delete",
"parameters": [
{
"type": "integer",
"description": "UserID",
"name": "uid",
"in": "path",
"required": true
},
{
"type": "integer",
"description": "ClientID",
"name": "cid",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/models.ClientJSON"
}
},
"400": {
"description": "Bad Request",
"schema": {
"$ref": "#/definitions/ginresp.apiError"
}
},
"401": {
"description": "Unauthorized",
"schema": {
"$ref": "#/definitions/ginresp.apiError"
}
},
"404": {
"description": "Not Found",
"schema": {
"$ref": "#/definitions/ginresp.apiError"
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/ginresp.apiError"
}
}
}
}
},
"/api-v2/user/{uid}/clients/{cid}": {
"get": {
"summary": "get a single clients",
"summary": "Get a single clients",
"operationId": "api-clients-get",
"parameters": [
{
@@ -674,6 +726,23 @@
}
}
},
"handler.AddClient.body": {
"type": "object",
"properties": {
"agent_model": {
"type": "string"
},
"agent_version": {
"type": "string"
},
"client_type": {
"type": "string"
},
"fcm_token": {
"type": "string"
}
}
},
"handler.CreateUser.body": {
"type": "object",
"properties": {