給使用者刪除指定標籤
Remove an auto tag mapping and update client count
Authorizations
Query parameters
botIdstringRequired
The bot ID for the API request
Body
Client identification rules:
- Either provide 'clientId' OR both 'platform' and 'platformClientId'
secretstringRequiredExample:
Secret key for API authentication
your_secret_key_here
autoTagIdstringRequiredExample:
The auto tag ID
VolejRejN
clientIdstringOptionalExample:
The client ID (required if platform + platformClientId not provided)
client456
platformstring · enumOptionalExample:
Platform type (required if platformClientId provided)
line
Possible values: platformClientIdstringOptionalExample:
Platform-specific client ID (required if clientId not provided)
U1234567890abcdef
Responses
200
Auto tag mapping deleted successfully
application/json
401
JWT token is invalid or expired
application/json
403
Permission denied - insufficient access rights
application/json
404
OpenAPI configuration not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
post
POST /api/openapi/autoTagMapping/delete HTTP/1.1
Host: mantago.cc
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 137
{
"secret": "your_secret_key_here",
"autoTagId": "VolejRejN",
"clientId": "client456",
"platform": "line",
"platformClientId": "U1234567890abcdef"
}
{
"success": true,
"message": "Delete auto tag mapping successfully"
}
Last updated