刪除手動標籤
Remove a client tag from the system
Authorizations
AuthorizationstringRequired
Bearer token for API authentication
Path parameters
tagIdstringRequired
The ID of the client tag to delete
Query parameters
botIdstringRequired
The bot ID for the API request
Body
secretstringRequiredExample:
Secret key for API authentication
your_secret_key_hereResponses
200
Client tag deleted successfully
application/json
401
JWT token is invalid or expired
application/json
403
Permission denied or client tag deletion failed
application/json
404
OpenAPI configuration not found or client tag not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
post
/openapi/clientTag/delete/{tagId}POST /api/openapi/clientTag/delete/{tagId}?botId=text HTTP/1.1
Host: mantago.cc
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 33
{
"secret": "your_secret_key_here"
}{
"success": true,
"message": "Delete client tag successfully"
}Last updated